Sha256: 572bc28a8057e8ca1b6c6f6fc093cbeef0ae733c6e3e86ac1e1989f6b3954eaf

Contents?: true

Size: 1.28 KB

Versions: 19

Compression:

Stored size: 1.28 KB

Contents

class CreateUnidomShipmentReceipts < ActiveRecord::Migration

  def change

    create_table :unidom_shipment_receipts, id: :uuid do |t|

      t.references :package,    type: :uuid, null: false
      t.references :shipped,    type: :uuid, null: false,
        polymorphic: { null: false, default: '', limit: 200 }
      t.references :store_item, type: :uuid, null: false,
        polymorphic: { null: false, default: '', limit: 200 }

      t.decimal :accepted_quantity, null: false, default: 0.0, precision: 12, scale: 2
      t.decimal :rejected_quantity, null: false, default: 0.0, precision: 12, scale: 2

      t.datetime :received_at, null: false, default: nil

      t.text :rejection_reason
      t.text :instruction
      t.text :description

      t.column   :state, 'char(1)', null: false, default: 'C'
      t.datetime :opened_at,        null: false, default: ::Time.utc(1970)
      t.datetime :closed_at,        null: false, default: ::Time.utc(3000)
      t.boolean  :defunct,          null: false, default: false
      t.jsonb    :notation,         null: false, default: {}

      t.timestamps null: false

    end

    add_index :unidom_shipment_receipts, :package_id
    add_index :unidom_shipment_receipts, :shipped_id
    add_index :unidom_shipment_receipts, :store_item_id

  end

end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
unidom-shipment-0.7.8 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.7 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.6 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.5 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.4 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.3 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.2 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7.1 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.7 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.6.2 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.6.1 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.6 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.5.1 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.5 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.4 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.3.2 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.3.1 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.3 db/migrate/20021013000000_create_unidom_shipment_receipts.rb
unidom-shipment-0.2 db/migrate/20021013000000_create_unidom_shipment_receipts.rb