Lorsque j'ai exécuté ma migration dans une application Rails sur postgresql, j'ai obtenu les NOTICES suivants
NOTICE: CREATE TABLE will create implicit sequence "notification_settings_id_seq" for serial column "notification_settings.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "notification_settings_pkey" for table "notification_settings"
Mon fichier de migration contient 088_create_notification_settings.rb
class CreateNotificationSettings < ActiveRecord::Migration
def self.up
create_table :notification_settings do |t|
t.integer :user_id
t.integer :notification_id
t.boolean :notification_on
t.boolean :outbound
end
end
def self.down
drop_table :notification_settings
end
end
Je voudrais savoir
Que signifie cet avis ?
Comment éviter ces NOTICES ?
Quel sera l'impact de ces NOTICES sur l'application si elles ne sont pas évitées ?
Regards,
Salil