2017-09-10 17:25:29 +05:30
|
|
|
# rubocop:disable Migration/Timestamps
|
2016-09-13 17:45:13 +05:30
|
|
|
class CreateLists < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :lists do |t|
|
|
|
|
t.references :board, index: true, foreign_key: true, null: false
|
|
|
|
t.references :label, index: true, foreign_key: true
|
|
|
|
t.integer :list_type, null: false, default: 1
|
|
|
|
t.integer :position
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|