2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2018-11-13 02:27:31 -05:00
|
|
|
class CreateTasks < ActiveRecord::Migration[4.2]
|
2016-11-30 10:15:02 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
2016-02-12 08:17:42 -05:00
|
|
|
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
|
|
|
|
|
2016-11-28 10:45:08 -05:00
|
|
|
t.timestamps null: true
|
2016-02-12 08:17:42 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|