discourse/db/migrate/20120530160745_migrate_posted.rb
Chris Schetter 32ff6c264a Working out outdated migrations
Several migrations were failing when running db:migrate at the initial release version from an empty database.
These changes took out statements that were causing migrations to fail, usually because of references to models that no longer exist.
2013-02-05 21:33:26 -08:00

8 lines
83 B
Ruby

class MigratePosted < ActiveRecord::Migration
def up
end
def down
end
end