gitlab-org--gitlab-foss/db/migrate/20160727191041_create_boards.rb
Douglas Barbosa Alexandre 611dab2e52 Add Board model
2016-08-17 12:58:57 -03:00

13 lines
279 B
Ruby

class CreateBoards < ActiveRecord::Migration
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