2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2016-06-02 11:05:42 +05:30
|
|
|
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
|