mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 08:03:43 +08:00
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
|