blob: 33acc8af91ff1e552b3c686e1da4ce3f2f1018bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# rubocop:disable all
class CreateTasks < ActiveRecord::Migration[4.2]
DOWNTIME = false
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 null: true
end
end
end
|