УВЕДОМЛЕНИЯ о последовательности после выполнения миграции в rails в приложении postgresql

Когда я запустил миграцию в приложении Rails на postgresql, я получил следующие УВЕДОМЛЕНИЯ

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"

Мой файл миграции содержит 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

Я хотел бы знать

, что означают эти УВЕДОМЛЕНИЯ?

Как этого избежать УВЕДОМЛЕНИЯ?

Какое влияние окажут такие УВЕДОМЛЕНИЯ на приложение, если их не избежать?

С уважением,

Салил

34
задан skaffman 14 March 2011 в 08:34
поделиться