Sha256: 7d21ce462da538b2ca5006a1889bd92f0bb52bd15625c924d2ae244b156e8b0c
Contents?: true
Size: 531 Bytes
Versions: 16
Compression:
Stored size: 531 Bytes
Contents
class CreateEcomCoreCrewContractTransactions < ActiveRecord::Migration[6.0] def change create_table :ecom_core_crew_contract_transactions do |t| t.string :transaction_type, null: false t.string :status, null: false, default: 'Pending' t.datetime :effective_date, null: false t.references :crew_contract, null: false, index: { name: 'cct_on_cc_indx' }, foreign_key: { to_table: :ecom_core_crew_contracts } t.timestamps end end end
Version data entries
16 entries across 16 versions & 1 rubygems