allow pms to be targetted at groups
This commit is contained in:
Sam
2013-05-02 15:15:17 +10:00
parent e59ab32210
commit 65cd00cf25
27 changed files with 176 additions and 61 deletions

View File

@@ -1,6 +1,7 @@
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

View File

@@ -0,0 +1,6 @@
class FixTopicAllowedGroups < ActiveRecord::Migration
def change
# big oops
remove_column :topic_allowed_groups, :integer
end
end