5 lines
96 B
Ruby
5 lines
96 B
Ruby
class DeleteAdminsTable < ActiveRecord::Migration
|
|
def change
|
|
drop_table :admins
|
|
end
|
|
end
|