mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
10 lines
162 B
Ruby
10 lines
162 B
Ruby
class DropServerKey < ActiveRecord::Migration[5.1]
|
|
def up
|
|
drop_table :server_keys
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|