mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 00:36:42 +01:00
9 lines
152 B
Ruby
9 lines
152 B
Ruby
class DropAdmins < ActiveRecord::Migration[5.2]
|
|
def up
|
|
drop_table :admins
|
|
end
|
|
def down
|
|
fail ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|