2023-08-06 17:45:45 -07:00
|
|
|
class CreateSpecies < ActiveRecord::Migration[3.2]
|
2013-01-21 12:55:48 -08:00
|
|
|
def self.up
|
|
|
|
create_table :species
|
|
|
|
Species.create_translation_table! :name => :string
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :species
|
|
|
|
Species.drop_translation_table!
|
|
|
|
end
|
|
|
|
end
|