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.
14 lines
382 B
Ruby
14 lines
382 B
Ruby
# rubocop:disable all
|
|
class AddSentNotifications < ActiveRecord::Migration
|
|
def change
|
|
create_table :sent_notifications do |t|
|
|
t.references :project
|
|
t.references :noteable, polymorphic: true
|
|
t.references :recipient
|
|
t.string :commit_id
|
|
t.string :reply_key, null: false
|
|
end
|
|
|
|
add_index :sent_notifications, :reply_key, unique: true
|
|
end
|
|
end
|