discourse/db/migrate/20170524182846_add_unread_tracking_columns.rb

10 lines
197 B
Ruby
Raw Normal View History

class AddUnreadTrackingColumns < ActiveRecord::Migration
def up
# no op, no need to create all data, next migration will delete it
end
def down
raise "Can not be reverted"
end
end