impress/db/migrate/20100514224031_create_items.rb

15 lines
229 B
Ruby
Raw Normal View History

2010-05-14 15:41:40 -07:00
class CreateItems < ActiveRecord::Migration
def self.up
create_table :items do |t|
t.string :name
t.string :species_support_ids
t.timestamps
end
end
def self.down
drop_table :items
end
end