10 lines
144 B
Ruby
10 lines
144 B
Ruby
class DropPoolVersions < ActiveRecord::Migration
|
|
def up
|
|
drop_table :pool_versions
|
|
end
|
|
|
|
def down
|
|
raise NotImplementedError
|
|
end
|
|
end
|