mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
199 B
Ruby
10 lines
199 B
Ruby
class RemoveForumId < ActiveRecord::Migration
|
|
def up
|
|
remove_column 'forum_threads', 'forum_id'
|
|
remove_column 'categories', 'forum_id'
|
|
end
|
|
|
|
def down
|
|
raise 'not reversible'
|
|
end
|
|
end
|