Sha256: 39b1689d041883a78c5ee7b3a64f53bd4b14e848bfa4dfcaee91b2aa77551241

Contents?: true

Size: 295 Bytes

Versions: 2

Compression:

Stored size: 295 Bytes

Contents

class CreateCustomerProducts < ActiveRecord::Migration
  def change
    create_table :customer_products do |t|
      t.integer	:costumer_id	
      t.integer	:product_id	
      t.date	:date	
      t.boolean	:used	, :default => true
      t.integer	:rate_id


      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guara-0.0.3 db/migrate/20120621100639_create_customer_products.rb
guara-0.0.1.rc db/migrate/20120621100639_create_customer_products.rb