Massive Cleanup
[cs356-p2-videostore.git] / db / migrate / 003_create_coitems.rb
1 class CreateCoitems < ActiveRecord::Migration
2   def self.up
3     create_table :coitems do |t|
4       t.column :customer_id, :integer
5       t.column :rentable_id, :integer
6       t.column :out_date, :date, :default => Time.now
7       t.column :due_date, :date
8     end
9   end
10
11   def self.down
12     drop_table :coitems
13   end
14 end