summaryrefslogtreecommitdiff
path: root/db/migrate/20160212123307_create_tasks.rb
blob: cd3ad0e4cd8d9137712bdb49591d6adc9e2d9bb6 (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
  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