Sha256: ea75e9226e02aec43ae94b790d444411997fcca94bb20b7d74045047d9f59748
Contents?: true
Size: 575 Bytes
Versions: 65
Compression:
Stored size: 575 Bytes
Contents
class CreateComeeCoreGoodsReceivedNotes < ActiveRecord::Migration[7.1] def change create_table :comee_core_goods_received_notes do |t| t.string :grn_number t.string :date_of_receipt t.float :total_quantity, null: false t.float :total_amount, null: false t.string :received_condition t.string :comments t.references :purchase_order, null: false, index: {name: "po_on_ccgrn_indx"}, foreign_key: {to_table: :comee_core_purchase_orders} t.timestamps end end end
Version data entries
65 entries across 65 versions & 1 rubygems