10 lines
129 B
Ruby
10 lines
129 B
Ruby
|
class DropTable < ActiveRecord::Migration[5.1]
|
||
|
def up
|
||
|
drop_table :users
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise "not tested"
|
||
|
end
|
||
|
end
|