blob: 9ec8df1b8e8cac54930f73cc2fa4b254857c3f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# rubocop:disable Migration/Timestamps
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
|