mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
topic allowed groups for pms
This commit is contained in:
parent
cef9a74053
commit
b7aacfe86a
1 changed files with 11 additions and 0 deletions
11
db/migrate/20130430052751_add_topic_allowed_groups.rb
Normal file
11
db/migrate/20130430052751_add_topic_allowed_groups.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
class AddTopicAllowedGroups < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :topic_allowed_groups do |t|
|
||||
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
|
Loading…
Reference in a new issue