debian-mirror-gitlab/db/migrate/20160212123307_create_tasks.rb

18 lines
481 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-04-02 18:10:28 +05:30
class CreateTasks < ActiveRecord::Migration
2017-01-15 13:20:01 +05:30
DOWNTIME = false
2016-04-02 18:10:28 +05:30
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
2017-08-17 22:00:37 +05:30
t.timestamps null: true
2016-04-02 18:10:28 +05:30
end
end
end