001_create_products.rb from crlove at Krugle
Show 001_create_products.rb syntax highlighted
class CreateProducts < ActiveRecord::Migration
def self.up
create_table :products do |t|
t.column :title, :string
t.column :description, :text
t.column :image_url, :string
end
end
def self.down
drop_table :products
end
end
See more files for this project here