impress/db/migrate/20130121193957_create_species.rb

12 lines
234 B
Ruby
Raw Normal View History

2013-01-21 12:55:48 -08:00
class CreateSpecies < ActiveRecord::Migration
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