discourse/db/migrate/20130430052751_add_topic_allowed_groups.rb
2013-05-02 15:15:53 +10:00

13 lines
391 B
Ruby

class AddTopicAllowedGroups < ActiveRecord::Migration
def change
create_table :topic_allowed_groups do |t|
# oops
t.integer :group_id, :integer, null: false
t.integer :topic_id, :integer, null: false
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