a59e75a17f
Signed-off-by: Rémy Coutable <remy@rymai.me>
13 lines
285 B
Ruby
13 lines
285 B
Ruby
# rubocop:disable all
|
|
class CreateProjectGroupLinks < ActiveRecord::Migration
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
create_table :project_group_links do |t|
|
|
t.integer :project_id, null: false
|
|
t.integer :group_id, null: false
|
|
|
|
t.timestamps null: true
|
|
end
|
|
end
|
|
end
|