Skip to content

Instantly share code, notes, and snippets.

@noahhendrix
Created July 7, 2011 02:55
Show Gist options
  • Save noahhendrix/1068816 to your computer and use it in GitHub Desktop.
Save noahhendrix/1068816 to your computer and use it in GitHub Desktop.
Product Migration
class CreateProducts < ActiveRecord::Migration
def self.up
create_table :products do |t|
t.string :title
t.text :description
t.string :image_url
t.decimal :price, :precision => 8, :scale => 2
t.timestamps
end
end
def self.down
drop_table :products
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment