add categories to forum topics

This commit is contained in:
r888888888
2013-06-06 16:18:04 -07:00
parent a628864aff
commit f16178623b
9 changed files with 67 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddCategoryToForumTopics < ActiveRecord::Migration
def change
add_column :forum_topics, :category_id, :integer, :default => 0, :null => false
end
end