Sha256: 1e642221e54a126de43048c526bcb34e1ebf1a0558adbd4f2dd359a3f0ffa184
Contents?: true
Size: 375 Bytes
Versions: 3
Compression:
Stored size: 375 Bytes
Contents
class CreateBouquetSalesOrders < ActiveRecord::Migration[5.0] def change create_table :bouquet_sales_orders do |t| t.string :state t.date :date t.integer :quantity t.date :shipment_date t.references :product, index: true, foreign_key: true t.references :customer, index: true, foreign_key: true t.timestamps end end end
Version data entries
3 entries across 3 versions & 1 rubygems