10 lines
207 B
Ruby
10 lines
207 B
Ruby
require 'db/migrate/20110105051803_create_import_tables'
|
|
class DropImportTables < ActiveRecord::Migration
|
|
def self.up
|
|
CreateImportTables.down
|
|
end
|
|
|
|
def self.down
|
|
CreateImportTables.up
|
|
end
|
|
end
|