006_create_line_items.rb from crlove at Krugle
Show 006_create_line_items.rb syntax highlighted
class CreateLineItems < ActiveRecord::Migration
def self.up
create_table :line_items do |t|
t.column :product_id, :integer, :null => false
t.column :order_id, :integer, :null => false
t.column :quantity, :integer, :null => false
t.column :total_price, :integer, :null => false
end
end
def self.down
drop_table :line_items
end
end
See more files for this project here