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