Files
discourse/db/migrate/20140804060439_drop_topic_id_from_incoming_links.rb
2017-09-25 13:48:58 +08:00

6 lines
134 B
Ruby

class DropTopicIdFromIncomingLinks < ActiveRecord::Migration[4.2]
def change
remove_column :incoming_links, :topic_id
end
end