mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:53:41 +08:00
10 lines
211 B
Ruby
10 lines
211 B
Ruby
class AddUnreadTrackingColumns < ActiveRecord::Migration
|
|
def up
|
|
# no op, no need to create all data, next migration will delete it
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|