discourse/db/migrate/20140804060439_drop_topic_id_from_incoming_links.rb

5 lines
129 B
Ruby

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