discourse/db/migrate/20140804060439_drop_topic_id_from_incoming_links.rb

6 lines
134 B
Ruby

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