This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
evoresa/db/migrate/20100722152749_create_items.rb

16 lines
235 B
Ruby
Raw Normal View History

class CreateItems < ActiveRecord::Migration
def self.up
create_table :items do |t|
t.string :name
t.string :email
t.string :key
t.timestamps
end
end
def self.down
drop_table :items
end
end