5 lines
101 B
Ruby
5 lines
101 B
Ruby
class DeleteAdminsTable < ActiveRecord::Migration[5.0]
|
|
def change
|
|
drop_table :admins
|
|
end
|
|
end
|