debian-mirror-gitlab/db/migrate/20160328112808_create_notification_settings.rb
2019-02-15 15:39:39 +05:30

13 lines
341 B
Ruby

# rubocop:disable all
class CreateNotificationSettings < ActiveRecord::Migration[4.2]
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