12 lines
252 B
Ruby
12 lines
252 B
Ruby
|
class DropTablesNotNamedConventional < ActiveRecord::Migration
|
||
|
def change
|
||
|
drop_table :coment
|
||
|
drop_table :mission
|
||
|
drop_table :mission_coment
|
||
|
drop_table :note
|
||
|
drop_table :project
|
||
|
drop_table :share
|
||
|
drop_table :user
|
||
|
end
|
||
|
end
|