Files
discourse/db/migrate/20140804060439_drop_topic_id_from_incoming_links.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
165 B
Ruby
Raw Normal View History

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