Sha256: 4c5bca224b074623637aa1a7934189b1203119cc4ff06588c79c7a38bb1a3fc0
Contents?: true
Size: 508 Bytes
Versions: 110
Compression:
Stored size: 508 Bytes
Contents
class CreateComeeCorePaymentOrders < ActiveRecord::Migration[7.1] def change create_table :comee_core_payment_orders do |t| t.string :reference_no t.date :date_issued, null: false t.references :currency, null: false, index: {name: "currency_on_ccpo_indx"}, foreign_key: {to_table: :comee_core_currencies} t.float :amount, null: false t.integer :status, null: false, default: 0 t.timestamps end end end
Version data entries
110 entries across 110 versions & 1 rubygems