debian-mirror-gitlab/db/migrate/20160727191041_create_boards.rb
2019-02-15 15:39:39 +05:30

14 lines
323 B
Ruby

# rubocop:disable Migration/Timestamps
class CreateBoards < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
create_table :boards do |t|
t.references :project, index: true, foreign_key: true, null: false
t.timestamps null: false
end
end
end