mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 00:13:39 +08:00
13 lines
235 B
Ruby
13 lines
235 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveForumId < ActiveRecord::Migration[4.2]
|
|
def up
|
|
remove_column "forum_threads", "forum_id"
|
|
remove_column "categories", "forum_id"
|
|
end
|
|
|
|
def down
|
|
raise "not reversible"
|
|
end
|
|
end
|