gitlab-org--gitlab-foss/db/migrate/20160328112808_create_notification_settings.rb
Dmitriy Zaporozhets 855b2820c1 Improve db migrations for notification settings
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-30 10:44:20 +02:00

11 lines
314 B
Ruby

class CreateNotificationSettings < ActiveRecord::Migration
def change
create_table :notification_settings do |t|
t.references :user, null: false
t.references :source, polymorphic: true, null: false
t.integer :level, default: 0, null: false
t.timestamps null: false
end
end
end