mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 18:08:34 +08:00
* spelling: initial * spelling: integer * spelling: irreversible * spelling: mislabeled * spelling: notification * spelling: nullable * spelling: targeted
11 lines
239 B
Ruby
11 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
|