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.
15 lines
450 B
Ruby
15 lines
450 B
Ruby
# rubocop:disable all
|
|
class CreateTasks < ActiveRecord::Migration
|
|
def change
|
|
create_table :tasks do |t|
|
|
t.references :user, null: false, index: true
|
|
t.references :project, null: false, index: true
|
|
t.references :target, polymorphic: true, null: false, index: true
|
|
t.integer :author_id, index: true
|
|
t.integer :action, null: false
|
|
t.string :state, null: false, index: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|