98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
12 lines
336 B
Ruby
12 lines
336 B
Ruby
# rubocop:disable all
|
|
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
|