9 lines
116 B
Ruby
9 lines
116 B
Ruby
|
class DropOrganization < ActiveRecord::Migration
|
||
|
def up
|
||
|
drop_table :organizations
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|