2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 09:57:31 +00:00
moebooru/db/migrate/20120804130515_drop_server_key.rb

10 lines
162 B
Ruby
Raw Permalink Normal View History

class DropServerKey < ActiveRecord::Migration[5.1]
2012-08-04 20:08:38 +07:00
def up
drop_table :server_keys
end
def down
raise ActiveRecord::IrreversibleMigration
end
end