mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:38:01 +08:00
308c032293
* spelling: initial * spelling: integer * spelling: irreversible * spelling: mislabeled * spelling: notification * spelling: nullable * spelling: targeted
12 lines
239 B
Ruby
12 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveTopicIdFromUploads < ActiveRecord::Migration[4.2]
|
|
def up
|
|
remove_column :uploads, :topic_id
|
|
end
|
|
|
|
def down
|
|
add_column :uploads, :topic_id, :integer, null: false, default: -1
|
|
end
|
|
end
|