mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 02:47:15 +08:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
![]() |
class RemoveTopicIdFromUploads < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :uploads, :topic_id
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
add_column :uploads, :topic_id, :interger, null: false, default: -1
|
||
|
end
|
||
|
end
|