discourse/db/migrate/20130430052751_add_topic_al...

Failed to ignore revisions in .git-blame-ignore-revs.

15 lines
420 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddTopicAllowedGroups < ActiveRecord::Migration[4.2]
2013-04-30 02:30:12 -04:00
def change
create_table :topic_allowed_groups, force: true do |t|
# oops
t.integer :group_id, null: false
t.integer :topic_id, null: false
2013-04-30 02:30:12 -04:00
end
add_index :topic_allowed_groups, [:group_id, :topic_id], unique: true
add_index :topic_allowed_groups, [:topic_id, :group_id], unique: true
end
end