mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 13:32:46 +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
|