forked from OpenNeo/impress
14 lines
229 B
Ruby
14 lines
229 B
Ruby
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
|