Sha256: aa57691479d9b22700a24caceb459455faac12fc6a6d10e81153e4aad9f547b5

Contents?: true

Size: 854 Bytes

Versions: 130

Compression:

Stored size: 854 Bytes

Contents

class CreateComeeCoreCustomerOrders < ActiveRecord::Migration[7.1]
  def change
    create_table :comee_core_customer_orders do |t|
      t.string :order_number, null: false
      t.date :order_date, null: false
      t.references :client,
                   null: false,
                   index: {name: "client_on_cccuo_indx"},
                   foreign_key: {to_table: :comee_core_clients}
      t.string :order_terms
      t.string :consignee
      t.string :shipment_address
      t.string :final_destination
      t.date :final_delivery_date
      t.date :handover_date
      t.date :shipping_date
      t.string :delivery_address, null: false
      t.string :invoice_address, null: false
      t.integer :status, null: false, default: 0

      t.timestamps
    end
    add_index :comee_core_customer_orders, :order_number, unique: true
  end
end

Version data entries

130 entries across 130 versions & 1 rubygems

Version Path
comee_core-0.2.41 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.40 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.39 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.38 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.37 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.36 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.35 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.34 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.33 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.32 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.31 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.30 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.29 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.28 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.27 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.26 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.25 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.24 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.23 db/migrate/20230811083239_create_comee_core_customer_orders.rb
comee_core-0.2.22 db/migrate/20230811083239_create_comee_core_customer_orders.rb