Sha256: 0d9333f2fdff9a3e8eeb02cb727af30437be7ba110f7728e2ba774f44d92627a
Contents?: true
Size: 1.23 KB
Versions: 60
Compression:
Stored size: 1.23 KB
Contents
class CreateComeeCoreCustomsDetails < ActiveRecord::Migration[7.1] def change create_table :comee_core_customs_details do |t| t.references :sales_order, null: false, index: {name: "soi_on_cccd_indx"}, foreign_key: {to_table: :comee_core_sales_orders} t.string :registration_type t.string :export_declaration_type t.string :participant_constellation t.string :mode_of_transport_type t.string :destination_country t.boolean :containerized, default: false t.string :additional_identifier t.string :packaging_type t.string :export_customs_office t.string :customs_office_of_exit t.string :mode_of_transport t.string :delivery_term_code t.string :mrn t.string :office_number t.float :quantity t.string :characters_numbers t.string :closure_mark1 t.string :closure_mark2 t.string :closure_mark3 t.string :closure_mark4 t.string :closure_mark5 t.jsonb :transportation_route t.string :mode_of_transport_at_border t.string :mode_of_transport_nationality t.string :type_of_identification t.string :nationality t.timestamps end end end
Version data entries
60 entries across 60 versions & 1 rubygems