debian-mirror-gitlab/db/migrate/20210729081739_create_project_topics.rb
2021-11-11 11:23:49 +05:30

17 lines
375 B
Ruby

# frozen_string_literal: true
class CreateProjectTopics < ActiveRecord::Migration[6.1]
def change
create_table :project_topics do |t|
t.bigint :project_id, null: false
t.bigint :topic_id, null: false
t.index :project_id
t.index :topic_id
t.index [:project_id, :topic_id], unique: true
t.timestamps_with_timezone
end
end
end