mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 18:18:18 +00:00
5562 lines
915 KiB
TypeScript
5562 lines
915 KiB
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
||
|
||
/**
|
||
* Squashed baseline for the whole `freight` schema.
|
||
*
|
||
* Replaces the 299 incremental migrations that preceded it. The SQL below is a
|
||
* `pg_dump` of a database built by running those 299 in order, so a fresh
|
||
* database ends up byte-identical to one migrated the long way — including the
|
||
* reference/seed rows the old migrations inserted (wagon fleet, wagon types,
|
||
* cargo types, yards, approval rules, dropdown settings, contract templates,
|
||
* truck types, gov companies, exchange settings).
|
||
*
|
||
* On a database that already ran the old migrations this is a no-op: `up()`
|
||
* returns early when the schema is already there, and the row is recorded so the
|
||
* history stays linear. It is therefore safe to deploy to dev/prod as-is.
|
||
*
|
||
* Order matters: structure → seed rows → foreign keys. The FK constraints are
|
||
* applied last so the dumped INSERTs never depend on table ordering.
|
||
*
|
||
* Regenerate (never hand-edit): run every migration into an empty database, then
|
||
* `pg_dump --schema-only -n freight -T freight.migrations` plus a
|
||
* `--data-only --column-inserts` dump of the non-empty tables.
|
||
*
|
||
* ONE deliberate deviation from that dump, which a regeneration would silently
|
||
* undo — reapply it: `freight.otp_verifications` carries the constraint names
|
||
* `pk_otp_verifications` / `uq_otp_verifications_phone` rather than TypeORM's
|
||
* generated `PK_91d17…` / `UQ_5121c…`. Prod built that table through
|
||
* `1870000000000-RepairSynchronizeDrift` (which names its constraints by hand)
|
||
* while a fresh run builds it through `1810000000003-CreateOtpVerifications`
|
||
* (which lets TypeORM hash them). Same columns either way; matching prod's names
|
||
* keeps `sql/adopt-split-migration-history.sql` strict.
|
||
*/
|
||
|
||
const STRUCTURE_SQL = `
|
||
CREATE SCHEMA IF NOT EXISTS freight;
|
||
|
||
CREATE TYPE freight.consignments_cargo_type_enum AS ENUM (
|
||
'CONTAINER',
|
||
'BULK_LIQUID',
|
||
'BULK_DRY',
|
||
'GENERAL',
|
||
'REFRIGERATED',
|
||
'HAZARDOUS'
|
||
);
|
||
|
||
CREATE TYPE freight.consignments_status_enum AS ENUM (
|
||
'PENDING',
|
||
'LOADED',
|
||
'IN_TRANSIT',
|
||
'AT_DESTINATION',
|
||
'DELIVERED',
|
||
'RETURNED'
|
||
);
|
||
|
||
CREATE TYPE freight.invoices_status_enum AS ENUM (
|
||
'DRAFT',
|
||
'ISSUED',
|
||
'PENDING',
|
||
'PARTIALLY_PAID',
|
||
'PAID',
|
||
'OVERDUE',
|
||
'CANCELLED',
|
||
'REFUNDED',
|
||
'EXPIRED'
|
||
);
|
||
|
||
CREATE TYPE freight.payment_webhook_method_enum AS ENUM (
|
||
'telebirr',
|
||
'cbe-birr',
|
||
'ebirr'
|
||
);
|
||
|
||
CREATE TYPE freight.payments_currency_enum AS ENUM (
|
||
'ETB',
|
||
'USD'
|
||
);
|
||
|
||
CREATE TYPE freight.payments_method_enum AS ENUM (
|
||
'telebirr',
|
||
'cbe-birr',
|
||
'ebirr',
|
||
'waafi',
|
||
'card',
|
||
'dmoney',
|
||
'cac-bank',
|
||
'cbe-bill'
|
||
);
|
||
|
||
CREATE TYPE freight.payments_status_enum AS ENUM (
|
||
'action-required',
|
||
'processing',
|
||
'success',
|
||
'failed',
|
||
'canceled',
|
||
'refunded'
|
||
);
|
||
|
||
CREATE TYPE freight.priority_rules_priority_type_enum AS ENUM (
|
||
'USD_PAYER',
|
||
'RAIL_AND_FORWARDING',
|
||
'GOVERNMENT_ACCOUNT',
|
||
'HIGH_VOLUME_SHIPMENT'
|
||
);
|
||
|
||
CREATE TYPE freight.surcharges_calculation_method_enum AS ENUM (
|
||
'PER_TON',
|
||
'FLAT_FEE',
|
||
'PERCENTAGE'
|
||
);
|
||
|
||
CREATE TYPE freight.tracking_events_status_enum AS ENUM (
|
||
'PENDING',
|
||
'LOADED',
|
||
'IN_TRANSIT',
|
||
'AT_DESTINATION',
|
||
'DELIVERED',
|
||
'RETURNED'
|
||
);
|
||
|
||
CREATE TYPE freight.train_status AS ENUM (
|
||
'AVAILABLE',
|
||
'SCHEDULED',
|
||
'IN_SERVICE',
|
||
'UNDER_MAINTENANCE',
|
||
'OUT_OF_SERVICE',
|
||
'DEACTIVATED'
|
||
);
|
||
|
||
CREATE TYPE freight.vehicles_status_enum AS ENUM (
|
||
'ACTIVE',
|
||
'FREE',
|
||
'BUSY',
|
||
'MAINTENANCE',
|
||
'RETIRED',
|
||
'OUT_OF_SERVICE'
|
||
);
|
||
|
||
CREATE TYPE freight.weight_limit_rules_exceeded_action_enum AS ENUM (
|
||
'WARNING_ONLY',
|
||
'HARD_BLOCK'
|
||
);
|
||
|
||
CREATE TYPE freight.weight_limit_rules_trade_direction_enum AS ENUM (
|
||
'IMPORT',
|
||
'EXPORT',
|
||
'BOTH',
|
||
'DOMESTIC'
|
||
);
|
||
|
||
CREATE TABLE freight.approval_rules (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
requires_director_approval boolean NOT NULL,
|
||
step_order smallint NOT NULL,
|
||
required_role character varying(64) NOT NULL,
|
||
action_label character varying(50) NOT NULL,
|
||
blocks_role character varying(64),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.asset_acquisitions (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
vehicle_id uuid,
|
||
vendor_id uuid,
|
||
acquisition_type character varying NOT NULL,
|
||
acquisition_date date NOT NULL,
|
||
cost numeric(14,2),
|
||
useful_life_months integer,
|
||
salvage_value numeric(14,2),
|
||
lease_start date,
|
||
lease_end date,
|
||
monthly_payment numeric(14,2),
|
||
status character varying DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
notes text,
|
||
item_name character varying(200)
|
||
);
|
||
|
||
CREATE TABLE freight.asset_disposals (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
vehicle_id uuid NOT NULL,
|
||
disposal_date date NOT NULL,
|
||
method character varying NOT NULL,
|
||
sale_price numeric(14,2),
|
||
buyer character varying,
|
||
notes text
|
||
);
|
||
|
||
CREATE TABLE freight.booking_batch_offers (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
train_schedule_id uuid NOT NULL,
|
||
offered_wagons integer NOT NULL,
|
||
total_wagons integer NOT NULL,
|
||
offered_lines jsonb,
|
||
offered_weight_tons numeric(12,3) NOT NULL,
|
||
offered_amount numeric(14,2) NOT NULL,
|
||
offered_pricing_breakdown jsonb,
|
||
invoice_id uuid,
|
||
payment_deadline timestamp with time zone NOT NULL,
|
||
status character varying(10) DEFAULT 'OFFERED'::character varying NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.booking_cargo_modifier (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
trigger_value numeric(14,4),
|
||
calculated_amount numeric(14,2) NOT NULL,
|
||
rate_snapshot_id uuid NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
rate_id uuid NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.booking_container (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
container_type_id uuid,
|
||
quantity smallint NOT NULL,
|
||
vgm_per_unit_tons numeric(10,3) NOT NULL,
|
||
total_vgm_tons numeric(12,3) NOT NULL,
|
||
wagons_required numeric(6,2) NOT NULL,
|
||
weight_limit_rule_id uuid,
|
||
is_overweight boolean DEFAULT false NOT NULL,
|
||
overweight_excess_tons numeric(10,3),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
container_number character varying(64),
|
||
container_size character varying(10),
|
||
hazardous_quantity smallint DEFAULT 0,
|
||
reefer_quantity smallint DEFAULT 0,
|
||
return_quantity smallint DEFAULT 0 NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.booking_container_allocations (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
container_id uuid NOT NULL,
|
||
vehicle_id uuid,
|
||
container_type text NOT NULL,
|
||
quantity integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.booking_container_units (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_container_id uuid NOT NULL,
|
||
container_number character varying(64) NOT NULL,
|
||
seal_number character varying(64),
|
||
vgm_tons numeric(10,3) NOT NULL,
|
||
is_hazardous boolean DEFAULT false,
|
||
is_reefer boolean DEFAULT false,
|
||
sort_order smallint DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
received_to_port boolean DEFAULT false NOT NULL,
|
||
received_at timestamp with time zone,
|
||
grn_number character varying(100),
|
||
is_return boolean DEFAULT false NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.booking_contract_signatures (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
signer_role character varying(20) NOT NULL,
|
||
signer_user_id uuid,
|
||
signer_display_name character varying(200) NOT NULL,
|
||
signed_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
signature_file_id uuid,
|
||
consent_text text,
|
||
ip_address character varying(64),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.booking_document_review (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
setting_code character varying(128) NOT NULL,
|
||
file_key character varying(128) NOT NULL,
|
||
file_record_id uuid,
|
||
status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
note text,
|
||
reviewed_by_staff_id uuid,
|
||
reviewed_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
contract_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.booking_handovers (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
truck_assignment_id uuid,
|
||
truck_plate character varying(32),
|
||
mile_type character varying(20) NOT NULL,
|
||
reference character varying(100) NOT NULL,
|
||
generated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
signed_at timestamp with time zone,
|
||
signed_by_user_id uuid,
|
||
delivered_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
signer_name character varying(160),
|
||
edr_assignment_id uuid,
|
||
signature_image_url text
|
||
);
|
||
|
||
CREATE TABLE freight.booking_rate_snapshot (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
rate_id uuid NOT NULL,
|
||
rate_type character varying(50) NOT NULL,
|
||
rate_value numeric(14,4) NOT NULL,
|
||
rate_unit character varying(30) NOT NULL,
|
||
currency character varying(5) NOT NULL,
|
||
snapshotted_at timestamp with time zone NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.booking_requests (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
reference character varying(40) DEFAULT ''::character varying NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
requested_by_user_id uuid,
|
||
contract_route_id uuid,
|
||
scheduled_date timestamp with time zone,
|
||
status character varying(16) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
requested_lines jsonb DEFAULT '{}'::jsonb NOT NULL,
|
||
notes text,
|
||
created_booking_id uuid,
|
||
reviewed_by_staff_id uuid,
|
||
reviewed_at timestamp with time zone,
|
||
review_note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
payment_currency character varying(5)
|
||
);
|
||
|
||
CREATE TABLE freight.booking_review_note (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
author_id uuid,
|
||
note text NOT NULL,
|
||
type character varying(30) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.bookings (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
reference character varying(64) NOT NULL,
|
||
customer_id uuid,
|
||
train_id uuid,
|
||
status character varying(40) DEFAULT 'DRAFT'::character varying NOT NULL,
|
||
scheduled_date timestamp with time zone DEFAULT now(),
|
||
total_amount numeric(14,2) DEFAULT 0 NOT NULL,
|
||
payment_status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
contract_type character varying(20) DEFAULT 'SPOT'::character varying NOT NULL,
|
||
trade_direction character varying(10) DEFAULT 'IMPORT'::character varying NOT NULL,
|
||
equipment_return character varying(20) DEFAULT 'RETURN'::character varying NOT NULL,
|
||
first_mile_pickup_address text,
|
||
last_mile_delivery_address text,
|
||
cargo_total_weight_vgm numeric(12,3) DEFAULT 0 NOT NULL,
|
||
is_hazardous boolean DEFAULT false NOT NULL,
|
||
payment_currency character varying(5) DEFAULT 'USD'::character varying NOT NULL,
|
||
start_date date,
|
||
end_date date,
|
||
financial_terms text,
|
||
version_number integer DEFAULT 1 NOT NULL,
|
||
approved_by_staff_id uuid,
|
||
approved_by_staff_at timestamp with time zone,
|
||
signed_by_director_id uuid,
|
||
signed_by_director_at timestamp with time zone,
|
||
signed_by_ceo_id uuid,
|
||
signed_by_ceo_at timestamp with time zone,
|
||
priority_score integer DEFAULT 0 NOT NULL,
|
||
consolidation_partner_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
origin_yard_id uuid NOT NULL,
|
||
destination_yard_id uuid NOT NULL,
|
||
service_type_id uuid NOT NULL,
|
||
cargo_type_id uuid,
|
||
cargo_free_text character varying(200),
|
||
shipping_line_id uuid,
|
||
pnr_code character varying(50),
|
||
customer_signed_at timestamp with time zone,
|
||
fully_executed_at timestamp with time zone,
|
||
marketing_approved_by_id uuid,
|
||
marketing_approved_at timestamp with time zone,
|
||
contract_summary text,
|
||
locked_at timestamp with time zone,
|
||
freight_type character varying(20) NOT NULL,
|
||
contract_template_key character varying(80),
|
||
contract_generated_at timestamp with time zone,
|
||
pricing_breakdown jsonb,
|
||
company_id uuid NOT NULL,
|
||
wagons_required numeric(6,2),
|
||
scheduling_status character varying(30) DEFAULT 'NOT_SCHEDULED'::character varying NOT NULL,
|
||
hold_started_at timestamp with time zone,
|
||
hold_expires_at timestamp with time zone,
|
||
scheduled_at timestamp with time zone,
|
||
is_government boolean DEFAULT false NOT NULL,
|
||
government_institution character varying(255),
|
||
train_schedule_id uuid,
|
||
payment_deadline timestamp with time zone,
|
||
selected_for_batch_at timestamp with time zone,
|
||
company_profile_id uuid NOT NULL,
|
||
expires_at timestamp with time zone,
|
||
adjusted_total_amount numeric(14,2),
|
||
adjusted_by_staff_id uuid,
|
||
adjusted_at timestamp with time zone,
|
||
adjustment_reason text,
|
||
contract_validity_days integer,
|
||
contract_valid_from timestamp with time zone,
|
||
contract_valid_until timestamp with time zone,
|
||
first_mile_pickup_lat numeric(10,7),
|
||
first_mile_pickup_lng numeric(10,7),
|
||
last_mile_delivery_lat numeric(10,7),
|
||
last_mile_delivery_lng numeric(10,7),
|
||
customs_clearing_enabled boolean DEFAULT false NOT NULL,
|
||
customs_clearing_agent character varying(200),
|
||
is_reefer boolean DEFAULT false NOT NULL,
|
||
estimated_shipment_date timestamp with time zone,
|
||
contract_id uuid,
|
||
contract_route_id uuid,
|
||
created_by_role character varying(20) DEFAULT 'CUSTOMER'::character varying,
|
||
created_by_user_id uuid,
|
||
contract_kind character varying(20),
|
||
gl_station_yard_id uuid,
|
||
gl_assigned_staff_id uuid,
|
||
gl_assigned_at timestamp with time zone,
|
||
bulk_hazardous_quantity numeric(12,3) DEFAULT 0 NOT NULL,
|
||
bulk_reefer_quantity numeric(12,3) DEFAULT 0 NOT NULL,
|
||
clearance_current_phase character varying(40),
|
||
duty_required boolean,
|
||
vessel_departure_date date,
|
||
ro_amendment_requested_at timestamp with time zone,
|
||
ro_hold_reason text,
|
||
pre_clearance_finalized_at timestamp with time zone,
|
||
customer_truck_plate_number character varying(32),
|
||
customer_truck_driver_name character varying(120),
|
||
customer_truck_type character varying(60),
|
||
customer_truck_container_number character varying(16),
|
||
customer_truck_assigned_at timestamp with time zone,
|
||
customer_truck_arrived_at timestamp with time zone,
|
||
booking_type character varying(20) DEFAULT 'ONE_TIME'::character varying NOT NULL,
|
||
loaded_at timestamp with time zone,
|
||
loaded_by_user_id uuid,
|
||
arrived_at timestamp with time zone,
|
||
arrived_by_user_id uuid,
|
||
consolidation_resume_status character varying(40),
|
||
is_split boolean DEFAULT false NOT NULL,
|
||
pre_split_quantities jsonb,
|
||
double_handling boolean,
|
||
double_handling_set_at timestamp with time zone,
|
||
double_handling_set_by character varying(160),
|
||
vessel_arrival_date date,
|
||
do_collected_date date,
|
||
transit_assignee_requested_at timestamp with time zone,
|
||
transit_assignee_request_note text,
|
||
transit_assignee_name text,
|
||
transit_assignee_assigned_at timestamp with time zone,
|
||
requested_train_schedule_id uuid,
|
||
payment_reminder_sent_at timestamp with time zone,
|
||
bulk_total_weight_tons numeric(12,3),
|
||
CONSTRAINT chk_bookings_freight_type CHECK (((freight_type)::text = ANY ((ARRAY['CONTAINER'::character varying, 'BULK'::character varying])::text[])))
|
||
);
|
||
|
||
CREATE TABLE freight.cargo_type_wagon_types (
|
||
cargo_type_id uuid NOT NULL,
|
||
wagon_type_id uuid NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.cargo_types (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
cargo_type_name character varying(255) NOT NULL,
|
||
parent_group_id uuid,
|
||
requires_director_approval boolean DEFAULT false NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
display_order integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
code character varying(50) NOT NULL,
|
||
unit_of_measure character varying(16),
|
||
has_lashing boolean DEFAULT false NOT NULL,
|
||
items_per_wagon_map jsonb,
|
||
tons_per_wagon_map jsonb
|
||
);
|
||
|
||
CREATE TABLE freight.cargoes (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
cargo_reference character varying NOT NULL,
|
||
shipment_id uuid NOT NULL,
|
||
container_id uuid,
|
||
cargo_type_id uuid,
|
||
description text,
|
||
quantity numeric(12,3) NOT NULL,
|
||
weight numeric(10,2) NOT NULL,
|
||
volume numeric(10,2),
|
||
status character varying DEFAULT 'PENDING'::character varying NOT NULL,
|
||
loaded_at timestamp without time zone,
|
||
unloaded_at timestamp without time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
wagon_booking_allocation_id uuid,
|
||
booking_id uuid,
|
||
load_type character varying(20),
|
||
receiver_name character varying,
|
||
delivered_at timestamp without time zone,
|
||
delivery_remarks text
|
||
);
|
||
|
||
CREATE TABLE freight.clearance_incidents (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
incident_type character varying(32) NOT NULL,
|
||
description text NOT NULL,
|
||
photo_file_ids jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
reported_by_user_id uuid,
|
||
reported_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.clearance_milestones (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid,
|
||
contract_id uuid,
|
||
clearance_cycle_id uuid,
|
||
milestone_code character varying(64) NOT NULL,
|
||
milestone_label character varying(255) NOT NULL,
|
||
status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
owner_region character varying(5),
|
||
triggered_by_doc boolean DEFAULT false,
|
||
triggered_at timestamp with time zone,
|
||
triggered_by_user_id uuid,
|
||
note text,
|
||
sort_order smallint DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
metadata jsonb
|
||
);
|
||
|
||
CREATE TABLE freight.companies (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
name character varying(200) NOT NULL,
|
||
type character varying(32) NOT NULL,
|
||
status character varying(32) DEFAULT 'pending'::character varying NOT NULL,
|
||
tin character varying(10) NOT NULL,
|
||
vat_number character varying(50),
|
||
fan_number character varying(16),
|
||
country character varying(32) DEFAULT 'Ethiopia'::character varying NOT NULL,
|
||
address text,
|
||
phone character varying(20),
|
||
email character varying(150),
|
||
website character varying(200),
|
||
attributes jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
contact_person_name character varying(100),
|
||
contact_person_phone character varying(20),
|
||
general_manager_name character varying(100),
|
||
general_manager_email character varying(150),
|
||
general_manager_phone character varying(20),
|
||
nationality character varying(32),
|
||
licence_number character varying(100),
|
||
status_description text,
|
||
date_registered character varying(50),
|
||
renewed_from character varying(50),
|
||
renewal_date character varying(50),
|
||
renewed_to character varying(50),
|
||
region character varying(100),
|
||
zone character varying(100),
|
||
woreda character varying(100),
|
||
kebele character varying(100),
|
||
house_no character varying(100),
|
||
etrade_phone character varying(20),
|
||
kind character varying(20) DEFAULT 'commercial'::character varying NOT NULL,
|
||
approved_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.company_change_request (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
company_id uuid NOT NULL,
|
||
snapshot jsonb NOT NULL,
|
||
documents jsonb,
|
||
status character varying(20) DEFAULT 'pending'::character varying NOT NULL,
|
||
note text,
|
||
submitted_by uuid,
|
||
submitted_at timestamp with time zone,
|
||
reviewed_by uuid,
|
||
reviewed_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.company_profiles (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
company_id uuid NOT NULL,
|
||
type character varying(32) NOT NULL,
|
||
reference character varying(20),
|
||
status character varying(32) DEFAULT 'pending'::character varying NOT NULL,
|
||
business_license character varying(100),
|
||
attributes jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
business_license_files jsonb,
|
||
review_note text,
|
||
reviewed_by uuid,
|
||
reviewed_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.company_revisions (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
company_id uuid NOT NULL,
|
||
actor_id uuid,
|
||
summary character varying(255) NOT NULL,
|
||
changes jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.compliance_records (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
type character varying NOT NULL,
|
||
document_number character varying,
|
||
issued_date date,
|
||
expiry_date date NOT NULL,
|
||
status character varying DEFAULT 'VALID'::character varying NOT NULL,
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.consignments (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
tracking_number character varying(64) NOT NULL,
|
||
cargo_type freight.consignments_cargo_type_enum NOT NULL,
|
||
weight_kg numeric(12,2) NOT NULL,
|
||
status freight.consignments_status_enum DEFAULT 'PENDING'::freight.consignments_status_enum NOT NULL,
|
||
origin_station character varying(128) NOT NULL,
|
||
destination_station character varying(128) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.container_type_wagon_types (
|
||
container_type_id uuid NOT NULL,
|
||
wagon_type_id uuid NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.container_types (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
code character varying(20) NOT NULL,
|
||
label character varying(100),
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
size_ft smallint,
|
||
is_reefer boolean DEFAULT false NOT NULL,
|
||
is_open_top boolean DEFAULT false NOT NULL,
|
||
display_order integer DEFAULT 1 NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.containers (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
container_number character varying NOT NULL,
|
||
container_type_id uuid NOT NULL,
|
||
wagon_id uuid,
|
||
"position" integer,
|
||
tare_weight numeric(10,2) NOT NULL,
|
||
max_gross_weight numeric(10,2) NOT NULL,
|
||
seal_number character varying,
|
||
status character varying DEFAULT 'AVAILABLE'::character varying NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
booking_id uuid,
|
||
wagon_booking_allocation_id uuid,
|
||
booking_container_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.contract_approval_steps (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
step_order smallint DEFAULT 0 NOT NULL,
|
||
required_role character varying(64) NOT NULL,
|
||
blocks_role character varying(64),
|
||
status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
acted_by_staff_id uuid,
|
||
acted_at timestamp with time zone,
|
||
note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.contract_cargo_scope (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
container_size character varying(10),
|
||
cargo_type_id uuid,
|
||
cargo_free_text character varying(200),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
quantity_cap numeric(12,2)
|
||
);
|
||
|
||
CREATE TABLE freight.contract_clearance_cycles (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
cycle_number integer NOT NULL,
|
||
status character varying(40) DEFAULT 'AWAITING_DOCUMENTS'::character varying NOT NULL,
|
||
booking_id uuid,
|
||
started_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
clearance_ready_at timestamp with time zone,
|
||
completed_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
duty_required boolean,
|
||
vessel_departure_date date,
|
||
ro_amendment_requested_at timestamp with time zone,
|
||
ro_hold_reason text,
|
||
current_phase character varying(40),
|
||
pre_clearance_finalized_at timestamp with time zone,
|
||
transit_assignee_requested_at timestamp with time zone,
|
||
transit_assignee_requested_by_user_id uuid,
|
||
transit_assignee_request_note text,
|
||
transit_assignee_name text,
|
||
transit_assignee_assigned_at timestamp with time zone,
|
||
transit_assignee_assigned_by_user_id uuid,
|
||
vessel_arrival_date date,
|
||
do_collected_date date
|
||
);
|
||
|
||
CREATE TABLE freight.contract_document_review (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
clearance_cycle_id uuid,
|
||
setting_code character varying(128) NOT NULL,
|
||
file_key character varying(128) NOT NULL,
|
||
file_record_id uuid,
|
||
status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
note text,
|
||
uploaded_by_role character varying(20) DEFAULT 'CUSTOMER'::character varying NOT NULL,
|
||
reviewed_by_staff_id uuid,
|
||
reviewed_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.contract_document_revisions (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
contract_id uuid NOT NULL,
|
||
actor_id uuid,
|
||
actor_role character varying(64),
|
||
step_id uuid,
|
||
summary character varying(255),
|
||
changes jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
actor_name character varying(200)
|
||
);
|
||
|
||
CREATE TABLE freight.contract_rate_snapshots (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
rate_id uuid,
|
||
rate_code character varying(64) NOT NULL,
|
||
description character varying(255),
|
||
unit_price numeric(14,2) NOT NULL,
|
||
unit_of_measure character varying(32) NOT NULL,
|
||
currency character varying(5) NOT NULL,
|
||
container_size character varying(10),
|
||
is_surcharge boolean DEFAULT false,
|
||
conditional_on character varying(32),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
is_clearance boolean DEFAULT false NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.contract_review_notes (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
note_type character varying(40) NOT NULL,
|
||
body text NOT NULL,
|
||
author_role character varying(20),
|
||
author_user_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.contract_routes (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
origin_yard_id uuid NOT NULL,
|
||
destination_yard_id uuid NOT NULL,
|
||
km numeric(10,2),
|
||
sort_order smallint DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.contract_signatures (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
contract_id uuid NOT NULL,
|
||
role character varying(20) NOT NULL,
|
||
signer_display_name character varying(255) NOT NULL,
|
||
signature_file_id uuid,
|
||
consent_text text,
|
||
signed_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
stamp_file_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.contract_templates (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
code character varying(40) NOT NULL,
|
||
name character varying(200) NOT NULL,
|
||
description text,
|
||
document_title character varying(300) NOT NULL,
|
||
whereas_clauses jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
articles jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.contracts (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
reference character varying(64) NOT NULL,
|
||
company_id uuid,
|
||
company_profile_id uuid,
|
||
is_government boolean DEFAULT false NOT NULL,
|
||
government_institution character varying(255),
|
||
contract_kind character varying(20) NOT NULL,
|
||
renewal_of_id uuid,
|
||
trade_direction character varying(10) NOT NULL,
|
||
freight_type character varying(20) NOT NULL,
|
||
service_type_id uuid NOT NULL,
|
||
payment_currency character varying(5) NOT NULL,
|
||
customs_clearing_enabled boolean DEFAULT false NOT NULL,
|
||
customs_clearing_agent character varying(200),
|
||
equipment_return character varying(20),
|
||
first_mile_pickup_address text,
|
||
first_mile_pickup_lat numeric(10,7),
|
||
first_mile_pickup_lng numeric(10,7),
|
||
last_mile_delivery_address text,
|
||
last_mile_delivery_lat numeric(10,7),
|
||
last_mile_delivery_lng numeric(10,7),
|
||
is_hazardous boolean DEFAULT false NOT NULL,
|
||
is_reefer boolean DEFAULT false NOT NULL,
|
||
estimated_shipment_date timestamp with time zone,
|
||
contract_validity_days integer,
|
||
contract_valid_from timestamp with time zone,
|
||
contract_valid_until timestamp with time zone,
|
||
expires_at timestamp with time zone,
|
||
status character varying(40) DEFAULT 'DRAFT'::character varying NOT NULL,
|
||
clearance_status character varying(40) DEFAULT 'NOT_APPLICABLE'::character varying NOT NULL,
|
||
clearance_cycle_number integer DEFAULT 0 NOT NULL,
|
||
pricing_breakdown jsonb,
|
||
pricing_display_mode character varying(20) DEFAULT 'UNIT_RATES'::character varying,
|
||
contract_type character varying(20),
|
||
contract_template_key character varying(128),
|
||
contract_generated_at timestamp with time zone,
|
||
contract_summary text,
|
||
version_number integer DEFAULT 1 NOT NULL,
|
||
financial_terms jsonb,
|
||
approved_by_staff_id uuid,
|
||
approved_by_staff_at timestamp with time zone,
|
||
signed_by_director_id uuid,
|
||
signed_by_director_at timestamp with time zone,
|
||
signed_by_ceo_id uuid,
|
||
signed_by_ceo_at timestamp with time zone,
|
||
customer_signed_at timestamp with time zone,
|
||
fully_executed_at timestamp with time zone,
|
||
locked_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
document_snapshot jsonb,
|
||
hazard_class character varying(16),
|
||
un_number character varying(16),
|
||
status_before_suspension character varying(40),
|
||
submitted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.customer_truck_assignments (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
plate_number character varying(32) NOT NULL,
|
||
driver_name character varying(120) NOT NULL,
|
||
truck_type character varying(60) NOT NULL,
|
||
assigned_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
arrived_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
gross_weight_kg numeric(14,2),
|
||
departed_at timestamp with time zone,
|
||
tare_weight_tons numeric(14,3),
|
||
net_weight_tons numeric(14,3),
|
||
planned_tons numeric(14,3),
|
||
planned_quantity integer
|
||
);
|
||
|
||
CREATE TABLE freight.customer_truck_containers (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
assignment_id uuid NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
container_number character varying(64) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
loaded_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.customers (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
user_id uuid NOT NULL,
|
||
first_name character varying(100) NOT NULL,
|
||
last_name character varying(100) NOT NULL,
|
||
email character varying(150) NOT NULL,
|
||
phone character varying(20) NOT NULL,
|
||
company_name character varying(200) NOT NULL,
|
||
company_email character varying(150) NOT NULL,
|
||
company_phone character varying(20) NOT NULL,
|
||
company_location character varying(100) NOT NULL,
|
||
company_address text NOT NULL,
|
||
customer_type character varying(32),
|
||
status character varying(32),
|
||
contact_person_name character varying(100) NOT NULL,
|
||
contact_person_phone character varying(20) NOT NULL,
|
||
tin_number character varying(10) NOT NULL,
|
||
vat_number character varying(50),
|
||
fan_number character varying(16) NOT NULL,
|
||
general_manager_name character varying(100) NOT NULL,
|
||
general_manager_email character varying(150) NOT NULL,
|
||
general_manager_phone character varying(20) NOT NULL,
|
||
poa_name character varying(100),
|
||
poa_phone character varying(20),
|
||
poa_address text,
|
||
poa_email character varying(150),
|
||
poa_location character varying(100),
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.djibouti_import_incidents (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
container_number character varying(80),
|
||
cargo_id uuid,
|
||
facility character varying(120),
|
||
station character varying(120),
|
||
incident_type character varying(40) NOT NULL,
|
||
description text NOT NULL,
|
||
photos jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
reported_by character varying(120),
|
||
reported_at timestamp with time zone NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.drivers (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
license_number character varying NOT NULL,
|
||
first_name character varying NOT NULL,
|
||
last_name character varying NOT NULL,
|
||
email character varying NOT NULL,
|
||
phone_number character varying NOT NULL,
|
||
date_of_birth date NOT NULL,
|
||
license_expiry_date date NOT NULL,
|
||
status character varying DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
vehicle_types_authorized character varying[],
|
||
address text,
|
||
emergency_contact character varying,
|
||
notes text,
|
||
total_trips integer DEFAULT 0,
|
||
rating numeric(3,2),
|
||
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||
deleted_at timestamp without time zone,
|
||
fayda_verified boolean DEFAULT false,
|
||
fayda_sub character varying,
|
||
gender character varying
|
||
);
|
||
|
||
CREATE TABLE freight.dropdown_options (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
setting_id uuid NOT NULL,
|
||
value character varying(256) NOT NULL,
|
||
label character varying(256) NOT NULL,
|
||
note text,
|
||
is_disabled boolean DEFAULT false NOT NULL,
|
||
display_order integer DEFAULT 0 NOT NULL,
|
||
meta jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.dropdown_settings (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
code character varying(128) NOT NULL,
|
||
label character varying(256) NOT NULL,
|
||
description text,
|
||
multiple boolean DEFAULT false NOT NULL,
|
||
meta jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.empty_container_returns (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
container_number character varying(80) NOT NULL,
|
||
booking_id uuid,
|
||
customer_id uuid,
|
||
return_date timestamp with time zone NOT NULL,
|
||
facility character varying(120),
|
||
yard character varying(120),
|
||
zone character varying(120),
|
||
condition text,
|
||
handover_note text,
|
||
status character varying(40) DEFAULT 'RETURNED'::character varying NOT NULL,
|
||
wagon_allocation_reference character varying(120),
|
||
performed_by character varying(120),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
returned_by character varying(20),
|
||
status_history jsonb DEFAULT '[]'::jsonb NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.exchange_settings (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
fallback_rate numeric(18,6) NOT NULL,
|
||
fallback_source character varying(16) DEFAULT 'AUTO'::character varying NOT NULL,
|
||
last_synced_at timestamp with time zone,
|
||
updated_by_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.external_profiles (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
user_id uuid NOT NULL,
|
||
company_id uuid NOT NULL,
|
||
first_name character varying(100) NOT NULL,
|
||
last_name character varying(100) NOT NULL,
|
||
national_id character varying(50),
|
||
job_title character varying(100),
|
||
is_primary_contact boolean DEFAULT false NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
onboarding_step character varying(40),
|
||
onboarding_completed boolean DEFAULT false NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.facilities (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
code character varying(40) NOT NULL,
|
||
name character varying(160) NOT NULL,
|
||
description text,
|
||
facility_type character varying(32) NOT NULL,
|
||
facility_status character varying(32) DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
location_name character varying(200),
|
||
country character varying(100),
|
||
city character varying(100),
|
||
address text,
|
||
latitude numeric(10,8),
|
||
longitude numeric(11,8),
|
||
capacity numeric(14,3),
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
notes text,
|
||
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||
deleted_at timestamp without time zone
|
||
);
|
||
|
||
CREATE TABLE freight.facility_handling_events (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
yard_id uuid NOT NULL,
|
||
train_schedule_id uuid,
|
||
event_type character varying(10) NOT NULL,
|
||
grn_number character varying(60),
|
||
quantity numeric(14,3),
|
||
weight_tons numeric(14,3),
|
||
inventory_id uuid,
|
||
performed_by character varying(120),
|
||
occurred_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.fayda_verification_sessions (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
state character varying NOT NULL,
|
||
code_verifier character varying NOT NULL,
|
||
purpose character varying DEFAULT 'VERIFY'::character varying NOT NULL,
|
||
platform character varying DEFAULT 'WEB'::character varying NOT NULL,
|
||
save_to_account boolean DEFAULT false NOT NULL,
|
||
status character varying DEFAULT 'PENDING'::character varying NOT NULL,
|
||
error_code character varying,
|
||
error_description text,
|
||
iam_user_id uuid,
|
||
expires_at timestamp with time zone NOT NULL,
|
||
completed_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.ff_clients (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
forwarder_company_id uuid NOT NULL,
|
||
client_company_id uuid NOT NULL,
|
||
relationship_type character varying(32) DEFAULT 'managed_account'::character varying NOT NULL,
|
||
can_book_on_behalf boolean DEFAULT true NOT NULL,
|
||
can_view_documents boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.file_upload_fields (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
setting_id uuid NOT NULL,
|
||
file_key character varying(128) NOT NULL,
|
||
file_label character varying(256) NOT NULL,
|
||
help_text text,
|
||
is_required boolean DEFAULT false NOT NULL,
|
||
is_multiple boolean DEFAULT false NOT NULL,
|
||
max_files integer DEFAULT 1 NOT NULL,
|
||
allowed_extensions text[] DEFAULT '{}'::text[] NOT NULL,
|
||
max_size_mb integer DEFAULT 10 NOT NULL,
|
||
display_order integer DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
phase character varying(40),
|
||
owner_region character varying(5),
|
||
trade_direction character varying(10),
|
||
triggers_milestone_code character varying(64),
|
||
CONSTRAINT "CHK_file_upload_fields_max_files" CHECK ((max_files > 0)),
|
||
CONSTRAINT "CHK_file_upload_fields_max_size_mb" CHECK ((max_size_mb > 0))
|
||
);
|
||
|
||
CREATE TABLE freight.file_upload_settings (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
code character varying(128) NOT NULL,
|
||
label character varying(256) NOT NULL,
|
||
description text,
|
||
entity character varying(32) DEFAULT 'other'::character varying NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.files (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
resource_id uuid NOT NULL,
|
||
resource character varying(100) NOT NULL,
|
||
code character varying(100) NOT NULL,
|
||
name character varying(500) NOT NULL,
|
||
url text NOT NULL,
|
||
size integer NOT NULL,
|
||
mime_type character varying(255) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
review_status character varying(32),
|
||
review_note text,
|
||
reviewed_by uuid,
|
||
reviewed_at timestamp with time zone,
|
||
replaced_by_user_id uuid,
|
||
replace_reason text,
|
||
title character varying(300),
|
||
visible_to_customer boolean DEFAULT false NOT NULL,
|
||
uploaded_by_user_id uuid,
|
||
uploaded_by_name character varying(200)
|
||
);
|
||
|
||
CREATE TABLE freight.first_mile (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
status character varying(30) DEFAULT 'PAYMENT_PENDING'::character varying NOT NULL,
|
||
advanced_payment numeric(14,2) DEFAULT 0 NOT NULL,
|
||
remaining_payment numeric(14,2) DEFAULT 0 NOT NULL,
|
||
estimated_km numeric(10,2),
|
||
exact_km numeric(10,2),
|
||
vehicle_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
paid boolean DEFAULT false NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.first_mile_container_allocations (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
first_mile_id uuid NOT NULL,
|
||
container_id uuid NOT NULL,
|
||
vehicle_id uuid,
|
||
container_type text NOT NULL,
|
||
quantity integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.first_mile_vehicle_assignments (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
first_mile_id uuid NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
container_number character varying,
|
||
distance_km numeric(10,2),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
tons numeric(14,3),
|
||
quantity integer
|
||
);
|
||
|
||
CREATE TABLE freight.fleet_events (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
event_type character varying NOT NULL,
|
||
vehicle_id uuid,
|
||
driver_id uuid,
|
||
first_mile_id uuid,
|
||
last_mile_id uuid,
|
||
from_value character varying,
|
||
to_value character varying,
|
||
label character varying,
|
||
metadata jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.fuel_consumption (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
month date NOT NULL,
|
||
total_liters numeric(10,2) NOT NULL,
|
||
total_cost numeric(14,2) NOT NULL,
|
||
total_distance_km numeric(10,2) NOT NULL,
|
||
fuel_efficiency_km_per_l numeric(10,2),
|
||
number_of_purchases integer DEFAULT 0,
|
||
average_cost_per_liter numeric(10,2),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.fuel_purchases (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
purchase_date timestamp with time zone NOT NULL,
|
||
liters numeric(10,2) NOT NULL,
|
||
cost_per_liter numeric(10,2) NOT NULL,
|
||
total_cost numeric(14,2) NOT NULL,
|
||
fuel_station character varying(255),
|
||
payment_method character varying(50) DEFAULT 'CASH'::character varying,
|
||
odometer_reading numeric(10,2),
|
||
driver_id uuid,
|
||
receipt_number character varying(255),
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.gps_devices (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
imei character varying(20) NOT NULL,
|
||
name character varying,
|
||
vehicle_id uuid,
|
||
status character varying(16) DEFAULT 'REGISTERED'::character varying NOT NULL,
|
||
last_seen_at timestamp with time zone,
|
||
last_lat numeric(10,6),
|
||
last_lng numeric(10,6),
|
||
last_speed numeric(6,2),
|
||
last_course integer,
|
||
last_fix_at timestamp with time zone,
|
||
voltage_level integer,
|
||
gsm_level integer,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.gps_positions (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
device_id uuid NOT NULL,
|
||
imei character varying(20) NOT NULL,
|
||
vehicle_id uuid,
|
||
lat numeric(10,6) NOT NULL,
|
||
lng numeric(10,6) NOT NULL,
|
||
speed numeric(6,2) DEFAULT 0 NOT NULL,
|
||
course integer DEFAULT 0 NOT NULL,
|
||
satellites integer DEFAULT 0 NOT NULL,
|
||
positioned boolean DEFAULT false NOT NULL,
|
||
gps_time timestamp with time zone NOT NULL,
|
||
alarm integer DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.import_customs_finalizations (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
documents jsonb DEFAULT '{}'::jsonb NOT NULL,
|
||
declaration_serial_number character varying(120),
|
||
duties_taxes_notified_at timestamp with time zone,
|
||
duties_taxes_paid_at timestamp with time zone,
|
||
customs_risk character varying(12),
|
||
import_release_permitted_at timestamp with time zone,
|
||
completed_at timestamp with time zone,
|
||
performed_by character varying(120),
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.import_djibouti_operations (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
train_schedule_id uuid NOT NULL,
|
||
documents jsonb DEFAULT '{}'::jsonb NOT NULL,
|
||
gatepass_granted_at timestamp with time zone,
|
||
ready_for_loading_at timestamp with time zone,
|
||
loaded_on_train_at timestamp with time zone,
|
||
departed_from_djibouti_at timestamp with time zone,
|
||
load_list_generated_at timestamp with time zone,
|
||
performed_by character varying(120),
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.incidents (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
vehicle_id uuid,
|
||
driver_id uuid,
|
||
booking_id uuid,
|
||
type character varying NOT NULL,
|
||
severity character varying NOT NULL,
|
||
occurred_at timestamp with time zone NOT NULL,
|
||
location character varying,
|
||
description text NOT NULL,
|
||
damage_estimate numeric(14,2),
|
||
status character varying DEFAULT 'REPORTED'::character varying NOT NULL,
|
||
insurance_claim_number character varying,
|
||
reported_by character varying
|
||
);
|
||
|
||
CREATE TABLE freight.interchange_document_items (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
interchange_document_id uuid NOT NULL,
|
||
booking_id uuid,
|
||
booking_reference character varying(64),
|
||
item_type character varying(20) NOT NULL,
|
||
booking_container_id uuid,
|
||
booking_cargo_id uuid,
|
||
container_number character varying(64),
|
||
seal_number character varying(100),
|
||
cargo_id uuid,
|
||
cargo_type character varying(255),
|
||
cargo_description text,
|
||
weight numeric(14,3),
|
||
quantity numeric(12,3),
|
||
package_count integer,
|
||
wagon_number character varying(80),
|
||
condition_status character varying(20) DEFAULT 'GOOD'::character varying NOT NULL,
|
||
damage_description text,
|
||
remarks text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.interchange_documents (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
document_no character varying(40) NOT NULL,
|
||
direction character varying(10) NOT NULL,
|
||
schedule_id uuid,
|
||
train_no character varying(40),
|
||
route_id uuid,
|
||
origin_facility_id uuid,
|
||
destination_facility_id uuid,
|
||
handover_location character varying(255) NOT NULL,
|
||
handover_from character varying(255) NOT NULL,
|
||
handover_to character varying(255) NOT NULL,
|
||
operator_name character varying(255),
|
||
port_operator_name character varying(255),
|
||
shipping_line_name character varying(255),
|
||
customs_reference character varying(120),
|
||
manifest_reference character varying(120),
|
||
status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
|
||
generated_at timestamp with time zone,
|
||
acknowledged_at timestamp with time zone,
|
||
generated_by character varying(120),
|
||
acknowledged_by character varying(120),
|
||
remarks text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.invoice_lines (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
invoice_id uuid NOT NULL,
|
||
charge_type character varying NOT NULL,
|
||
description character varying(255),
|
||
quantity numeric(12,2) DEFAULT 1 NOT NULL,
|
||
unit_rate numeric(14,2) DEFAULT 0 NOT NULL,
|
||
amount numeric(14,2) NOT NULL,
|
||
currency character varying(8) DEFAULT 'ETB'::character varying NOT NULL,
|
||
metadata jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.invoices (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
invoice_number character varying(64) NOT NULL,
|
||
company_id uuid NOT NULL,
|
||
company_profile_id uuid NOT NULL,
|
||
total_amount numeric(14,2) NOT NULL,
|
||
currency character varying(8) DEFAULT 'ETB'::character varying NOT NULL,
|
||
status freight.invoices_status_enum DEFAULT 'DRAFT'::freight.invoices_status_enum NOT NULL,
|
||
source character varying(255) NOT NULL,
|
||
source_id character varying(255) NOT NULL,
|
||
type character varying(255) NOT NULL,
|
||
issued_at timestamp with time zone,
|
||
payment_id uuid,
|
||
due_at timestamp with time zone NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
subtotal_amount numeric(14,2) DEFAULT 0 NOT NULL,
|
||
tax_amount numeric(14,2) DEFAULT 0 NOT NULL,
|
||
paid_amount numeric(14,2) DEFAULT 0 NOT NULL,
|
||
balance_amount numeric(14,2) DEFAULT 0 NOT NULL,
|
||
paid_at timestamp with time zone,
|
||
payments jsonb DEFAULT '[]'::jsonb NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.last_mile (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
status character varying(30) DEFAULT 'PAYMENT_PENDING'::character varying NOT NULL,
|
||
advanced_payment numeric(14,2) DEFAULT 0 NOT NULL,
|
||
remaining_payment numeric(14,2) DEFAULT 0 NOT NULL,
|
||
estimated_km numeric(10,2),
|
||
exact_km numeric(10,2),
|
||
vehicle_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
paid boolean DEFAULT false NOT NULL,
|
||
arrived_at timestamp with time zone,
|
||
delivered_at timestamp with time zone,
|
||
pod_recipient_name character varying(160),
|
||
pod_signature_file_id uuid,
|
||
pod_photo_file_ids text[] DEFAULT '{}'::text[] NOT NULL,
|
||
pod_notes text,
|
||
pod_captured_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.last_mile_container_allocations (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
last_mile_id uuid NOT NULL,
|
||
container_id uuid NOT NULL,
|
||
vehicle_id uuid,
|
||
container_type text NOT NULL,
|
||
quantity integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.last_mile_vehicle_assignments (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
last_mile_id uuid NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
container_number character varying,
|
||
distance_km numeric(10,2),
|
||
arrived_at timestamp with time zone,
|
||
departed_at timestamp with time zone,
|
||
gross_weight_tons numeric(14,3),
|
||
net_weight_tons numeric(14,3),
|
||
destination_arrived_at timestamp with time zone,
|
||
returned_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.last_mile_vehicle_containers (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
assignment_id uuid NOT NULL,
|
||
last_mile_id uuid NOT NULL,
|
||
container_number character varying(32) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.locomotives (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
code character varying(32) NOT NULL,
|
||
name character varying(100),
|
||
max_pull_weight_tons numeric(10,3) NOT NULL,
|
||
status character varying(20) DEFAULT 'AVAILABLE'::character varying NOT NULL,
|
||
available_from timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
locomotive_type character varying(20) DEFAULT 'DIESEL'::character varying NOT NULL,
|
||
max_train_length_meters numeric(10,3) DEFAULT 760 NOT NULL,
|
||
power_kw numeric(10,3),
|
||
traction_force_kn numeric(10,3),
|
||
max_speed_kmh numeric(10,3),
|
||
current_yard_id uuid,
|
||
overage_tolerance_tons numeric(10,3),
|
||
overage_tolerance_meters numeric(10,3)
|
||
);
|
||
|
||
CREATE TABLE freight.maintenance_costs (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
maintenance_schedule_id uuid,
|
||
incurred_date timestamp with time zone NOT NULL,
|
||
cost_amount numeric(14,2) NOT NULL,
|
||
cost_type character varying NOT NULL,
|
||
description character varying NOT NULL,
|
||
service_provider character varying,
|
||
invoice_number character varying,
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.maintenance_intervals (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
maintenance_type character varying NOT NULL,
|
||
interval_km numeric(14,2),
|
||
interval_days integer,
|
||
description text,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
service_item character varying(120)
|
||
);
|
||
|
||
CREATE TABLE freight.maintenance_schedules (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
maintenance_type character varying NOT NULL,
|
||
description character varying NOT NULL,
|
||
scheduled_date timestamp with time zone NOT NULL,
|
||
completed_date timestamp with time zone,
|
||
estimated_cost numeric(14,2),
|
||
actual_cost numeric(14,2),
|
||
status character varying DEFAULT 'SCHEDULED'::character varying NOT NULL,
|
||
odometer_reading numeric,
|
||
service_provider character varying,
|
||
notes text,
|
||
next_due_km numeric,
|
||
next_due_date timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
due_notified_at timestamp with time zone,
|
||
service_item character varying(120)
|
||
);
|
||
|
||
CREATE TABLE freight.notifications (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
recipient_user_id uuid NOT NULL,
|
||
audience character varying(20) NOT NULL,
|
||
type character varying(48) DEFAULT 'GENERIC'::character varying NOT NULL,
|
||
title character varying(200) NOT NULL,
|
||
body text NOT NULL,
|
||
link character varying,
|
||
data jsonb,
|
||
priority character varying(12) DEFAULT 'NORMAL'::character varying NOT NULL,
|
||
is_read boolean DEFAULT false NOT NULL,
|
||
read_at timestamp with time zone,
|
||
channels_sent jsonb,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.otp_verifications (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
phone character varying,
|
||
otp character varying NOT NULL,
|
||
verified boolean DEFAULT false NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
email character varying
|
||
);
|
||
|
||
CREATE TABLE freight.parts (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
name character varying NOT NULL,
|
||
sku character varying,
|
||
category character varying,
|
||
quantity_in_stock integer DEFAULT 0 NOT NULL,
|
||
reorder_level integer DEFAULT 0 NOT NULL,
|
||
unit_cost numeric(14,2),
|
||
location character varying,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.payment_refunds (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
payment_id uuid NOT NULL,
|
||
amount_minor integer NOT NULL,
|
||
reason character varying(255),
|
||
provider_refund_id character varying(255),
|
||
status character varying(50) NOT NULL,
|
||
created_at timestamp without time zone DEFAULT now() NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.payment_webhook_events (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
provider freight.payment_webhook_method_enum NOT NULL,
|
||
external_event_id character varying(255) NOT NULL,
|
||
merchant_order_id character varying(255),
|
||
provider_txn_id character varying(255),
|
||
signature_valid boolean NOT NULL,
|
||
status character varying(100) NOT NULL,
|
||
payload jsonb NOT NULL,
|
||
received_at timestamp without time zone DEFAULT now() NOT NULL,
|
||
processed_at timestamp without time zone,
|
||
processing_error text
|
||
);
|
||
|
||
CREATE TABLE freight.payments (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
ref_id character varying(255) NOT NULL,
|
||
type character varying(50) NOT NULL,
|
||
method freight.payments_method_enum NOT NULL,
|
||
currency freight.payments_currency_enum NOT NULL,
|
||
amount numeric NOT NULL,
|
||
raw_initiation jsonb DEFAULT '{}'::jsonb NOT NULL,
|
||
client_action jsonb,
|
||
merchant_order_id character varying(255) NOT NULL,
|
||
transaction_id character varying(255),
|
||
status freight.payments_status_enum DEFAULT 'action-required'::freight.payments_status_enum NOT NULL,
|
||
paid_at timestamp without time zone,
|
||
refunded_at timestamp without time zone,
|
||
expires_at timestamp without time zone,
|
||
failer_code character varying(30),
|
||
failer_message character varying(255),
|
||
reason character varying(255),
|
||
created_at timestamp without time zone DEFAULT now() NOT NULL,
|
||
reference_type character varying(40)
|
||
);
|
||
|
||
CREATE TABLE freight.priority_configs (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
type character varying(20) NOT NULL,
|
||
label character varying(100) NOT NULL,
|
||
currency character varying(5),
|
||
min_wagon_count integer NOT NULL,
|
||
max_wagon_count integer NOT NULL,
|
||
score_points integer DEFAULT 0 NOT NULL,
|
||
is_active boolean DEFAULT false NOT NULL,
|
||
display_order integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
CONSTRAINT chk_currency_for_type CHECK (((((type)::text = 'WAGON'::text) AND (currency IS NULL)) OR (((type)::text = 'CURRENCY'::text) AND (currency IS NOT NULL)) OR (((type)::text = 'CUSTOMS'::text) AND (currency IS NULL)))),
|
||
CONSTRAINT chk_wagon_range CHECK ((min_wagon_count <= max_wagon_count)),
|
||
CONSTRAINT priority_configs_type_check CHECK (((type)::text = ANY ((ARRAY['WAGON'::character varying, 'CURRENCY'::character varying, 'CUSTOMS'::character varying])::text[])))
|
||
);
|
||
|
||
CREATE TABLE freight.priority_rule_change_requests (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
action character varying(10) NOT NULL,
|
||
priority_config_id uuid,
|
||
payload jsonb,
|
||
status character varying(10) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
requested_by_user_id uuid,
|
||
decided_by_user_id uuid,
|
||
decided_at timestamp with time zone,
|
||
decision_note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.priority_rules (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
is_active boolean DEFAULT false NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
code character varying(40) NOT NULL,
|
||
label character varying(100) NOT NULL,
|
||
score integer DEFAULT 0 NOT NULL,
|
||
condition_currency character varying(5)
|
||
);
|
||
|
||
CREATE TABLE freight.rate_change_requests (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
rate_id uuid NOT NULL,
|
||
payload jsonb NOT NULL,
|
||
previous_values jsonb NOT NULL,
|
||
status character varying(10) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
requested_by_user_id uuid,
|
||
decided_by_user_id uuid,
|
||
decided_at timestamp with time zone,
|
||
decision_note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.rates (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
rate_type character varying(50) NOT NULL,
|
||
container_type_id uuid,
|
||
trade_direction character varying(10),
|
||
currency character varying(5) NOT NULL,
|
||
rate_value numeric(14,4) NOT NULL,
|
||
rate_unit character varying(30) NOT NULL,
|
||
status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
|
||
proposed_by_staff_id uuid NOT NULL,
|
||
approved_by_ceo_id uuid,
|
||
approved_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
applies_to character varying(20) DEFAULT 'OTHER'::character varying NOT NULL,
|
||
trigger character varying(20) DEFAULT 'ALWAYS'::character varying NOT NULL,
|
||
cargo_type_id uuid,
|
||
origin_yard_id uuid,
|
||
destination_yard_id uuid,
|
||
CONSTRAINT "CK_rates_yard_scope" CHECK (((deleted_at IS NOT NULL) OR ((status)::text = 'SUPERSEDED'::text) OR
|
||
CASE
|
||
WHEN ((((trigger)::text = 'ALWAYS'::text) AND ((applies_to)::text = ANY ((ARRAY['BULK'::character varying, 'CONTAINER'::character varying, 'INTERCITY'::character varying])::text[]))) OR ((trigger)::text = ANY ((ARRAY['CUSTOMS_CLEARANCE'::character varying, 'WITH_RETURN'::character varying])::text[]))) THEN ((origin_yard_id IS NOT NULL) AND (destination_yard_id IS NOT NULL))
|
||
ELSE ((origin_yard_id IS NULL) AND (destination_yard_id IS NULL))
|
||
END))
|
||
);
|
||
|
||
CREATE TABLE freight.route_milestones (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
route_id uuid NOT NULL,
|
||
yard_id uuid NOT NULL,
|
||
sequence_no integer NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
distance_km numeric(10,2)
|
||
);
|
||
|
||
CREATE TABLE freight.routes (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
origin_yard_id uuid NOT NULL,
|
||
destination_yard_id uuid NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
status character varying(32) DEFAULT 'AVAILABLE'::character varying NOT NULL,
|
||
direction character varying(10) NOT NULL,
|
||
CONSTRAINT chk_routes_direction CHECK (((direction)::text = ANY ((ARRAY['IMPORT'::character varying, 'EXPORT'::character varying, 'DOMESTIC'::character varying])::text[])))
|
||
);
|
||
|
||
CREATE TABLE freight.saved_signatures (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
user_id uuid NOT NULL,
|
||
signer_display_name character varying(200) NOT NULL,
|
||
signature_file_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
stamp_file_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.schedule_wagon_adjustment_logs (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
train_schedule_id uuid NOT NULL,
|
||
train_id uuid NOT NULL,
|
||
action character varying(10) NOT NULL,
|
||
wagon_id uuid NOT NULL,
|
||
wagon_number character varying(50) NOT NULL,
|
||
adjusted_by_user_id uuid,
|
||
occurred_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
yard_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.scheduling_events (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
train_schedule_id uuid NOT NULL,
|
||
trigger character varying(40) NOT NULL,
|
||
actor_user_id uuid,
|
||
reason text,
|
||
plan_snapshot jsonb DEFAULT '{}'::jsonb NOT NULL,
|
||
displaced_booking_ids jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE SEQUENCE freight.seq_company_profile_ex
|
||
START WITH 1
|
||
INCREMENT BY 1
|
||
NO MINVALUE
|
||
NO MAXVALUE
|
||
CACHE 1;
|
||
|
||
CREATE SEQUENCE freight.seq_company_profile_ffe
|
||
START WITH 1
|
||
INCREMENT BY 1
|
||
NO MINVALUE
|
||
NO MAXVALUE
|
||
CACHE 1;
|
||
|
||
CREATE SEQUENCE freight.seq_company_profile_fwj
|
||
START WITH 1
|
||
INCREMENT BY 1
|
||
NO MINVALUE
|
||
NO MAXVALUE
|
||
CACHE 1;
|
||
|
||
CREATE SEQUENCE freight.seq_company_profile_im
|
||
START WITH 1
|
||
INCREMENT BY 1
|
||
NO MINVALUE
|
||
NO MAXVALUE
|
||
CACHE 1;
|
||
|
||
CREATE SEQUENCE freight.seq_company_profile_tr
|
||
START WITH 1
|
||
INCREMENT BY 1
|
||
NO MINVALUE
|
||
NO MAXVALUE
|
||
CACHE 1;
|
||
|
||
CREATE TABLE freight.service_types (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
service_name character varying(255) NOT NULL,
|
||
description text,
|
||
can_be_booked_alone boolean DEFAULT true NOT NULL,
|
||
includes_first_mile boolean DEFAULT false NOT NULL,
|
||
includes_last_mile boolean DEFAULT false NOT NULL,
|
||
includes_customs boolean DEFAULT false NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
display_order integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
code character varying(50) NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.shipping_lines (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
code character varying(20) NOT NULL,
|
||
label character varying(100) NOT NULL,
|
||
mapped_to_code character varying(20),
|
||
show_extra_fee_notice boolean DEFAULT false NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.support_conversations (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
company_id uuid NOT NULL,
|
||
company_name character varying(200),
|
||
created_by_user_id uuid,
|
||
last_message_at timestamp with time zone,
|
||
last_message_preview character varying(280),
|
||
last_message_author_role character varying(12),
|
||
customer_last_read_at timestamp with time zone,
|
||
agent_last_read_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.support_messages (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
conversation_id uuid NOT NULL,
|
||
author_user_id uuid NOT NULL,
|
||
author_role character varying(12) NOT NULL,
|
||
author_name character varying(200),
|
||
body text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.tracking_events (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
consignment_id uuid NOT NULL,
|
||
location character varying(256) NOT NULL,
|
||
status freight.tracking_events_status_enum NOT NULL,
|
||
occurred_at timestamp with time zone NOT NULL,
|
||
description text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.train_checkpoint_events (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
train_schedule_id uuid NOT NULL,
|
||
yard_id uuid NOT NULL,
|
||
sequence_no integer NOT NULL,
|
||
kind character varying(20) NOT NULL,
|
||
occurred_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
note text,
|
||
recorded_by_user_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.train_composition_removal_logs (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
schedule_id uuid NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
booking_reference character varying(64),
|
||
removed_by_user_id uuid,
|
||
removed_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.train_locomotives (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
train_id uuid NOT NULL,
|
||
locomotive_id uuid NOT NULL,
|
||
sequence_no integer DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.train_schedule_bookings (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
train_schedule_id uuid NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
loading_status character varying(20) DEFAULT 'UNLOADED'::character varying NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.train_schedules (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
train_set_id uuid NOT NULL,
|
||
origin_station_id uuid NOT NULL,
|
||
destination_station_id uuid NOT NULL,
|
||
scheduled_departure_date timestamp with time zone NOT NULL,
|
||
scheduled_arrival_date timestamp with time zone,
|
||
status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
route_id uuid,
|
||
train_number character varying(20),
|
||
direction character varying(10),
|
||
actual_departure_at timestamp with time zone,
|
||
actual_arrival_at timestamp with time zone,
|
||
prepared_by_user_id uuid,
|
||
checked_by_user_id uuid,
|
||
max_wagons integer DEFAULT 53 NOT NULL,
|
||
booking_window_status character varying(10) DEFAULT 'OPEN'::character varying NOT NULL,
|
||
window_phase character varying(20),
|
||
window_opens_at timestamp with time zone,
|
||
window_closes_at timestamp with time zone,
|
||
doc_review_ends_at timestamp with time zone,
|
||
doc_review_completed_at timestamp with time zone,
|
||
payment_phase_ends_at timestamp with time zone,
|
||
booking_cycle_no integer DEFAULT 0 NOT NULL,
|
||
rule_window_open_hour integer,
|
||
rule_window_duration_hours numeric(6,4),
|
||
rule_reopen_delay_minutes integer,
|
||
rule_import_window_lead_days integer,
|
||
rule_export_booking_lead_hours integer,
|
||
rule_window_close_hour integer,
|
||
reference character varying(20),
|
||
wagon_allocation_snapshot jsonb,
|
||
rule_import_close_offset_minutes integer,
|
||
rule_export_close_offset_minutes integer,
|
||
reverse_wagon_order boolean DEFAULT false NOT NULL,
|
||
rule_payment_window_minutes integer,
|
||
window_rule_custom boolean DEFAULT false NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.train_scheduling_global_rules (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
max_train_length_meters numeric(10,2) DEFAULT 760 NOT NULL,
|
||
max_train_weight_tons numeric(10,3) DEFAULT 3500 NOT NULL,
|
||
max_wagons_per_train integer DEFAULT 53 NOT NULL,
|
||
max_20ft_container_weight_tons numeric(8,3) DEFAULT 30 NOT NULL,
|
||
max_20ft_pair_weight_diff_tons numeric(8,3) DEFAULT 10 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
import_window_lead_days integer DEFAULT 3 NOT NULL,
|
||
export_booking_lead_hours integer DEFAULT 24 NOT NULL,
|
||
window_open_hour integer DEFAULT 8 NOT NULL,
|
||
window_duration_hours numeric(6,4) DEFAULT 3 NOT NULL,
|
||
doc_review_minutes integer DEFAULT 30 NOT NULL,
|
||
payment_window_minutes integer DEFAULT 60 NOT NULL,
|
||
window_close_hour integer DEFAULT 17 NOT NULL,
|
||
import_close_offset_minutes integer,
|
||
export_close_offset_minutes integer,
|
||
export_payment_window_minutes integer DEFAULT 60 NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.train_set_locomotives (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
train_set_id uuid NOT NULL,
|
||
locomotive_id uuid NOT NULL,
|
||
sequence_no integer DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.train_set_wagons (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
train_set_id uuid NOT NULL,
|
||
wagon_type_id uuid NOT NULL,
|
||
sequence_no integer NOT NULL,
|
||
capacity_tons numeric(10,3) NOT NULL,
|
||
length_meters numeric(10,3) NOT NULL,
|
||
assigned_weight_tons numeric(10,3) DEFAULT 0 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
physical_wagon_id uuid,
|
||
status character varying(20) DEFAULT 'PLANNED'::character varying NOT NULL,
|
||
board_yard_id uuid,
|
||
alight_yard_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.train_sets (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
locomotive_id uuid NOT NULL,
|
||
total_weight_tons numeric(10,3) NOT NULL,
|
||
total_length_meters numeric(10,3) NOT NULL,
|
||
wagon_count integer NOT NULL,
|
||
status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
train_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.trains (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
code character varying(32) NOT NULL,
|
||
capacity_tons numeric(10,2) DEFAULT 0 NOT NULL,
|
||
status freight.train_status DEFAULT 'AVAILABLE'::freight.train_status NOT NULL,
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
train_number character varying(20),
|
||
train_name character varying(100),
|
||
route_id uuid,
|
||
origin_station_id uuid,
|
||
destination_station_id uuid,
|
||
departure_time timestamp with time zone,
|
||
arrival_time timestamp with time zone,
|
||
locomotive_number character varying(50),
|
||
remarks text,
|
||
current_yard_id uuid,
|
||
import_train_number character varying(20),
|
||
export_train_number character varying(20)
|
||
);
|
||
|
||
CREATE TABLE freight.transit_agents (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
name character varying(150) NOT NULL,
|
||
valid_from date NOT NULL,
|
||
valid_to date NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.truck_types (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
code character varying(32) NOT NULL,
|
||
name character varying(100) NOT NULL,
|
||
capacity_tons numeric(10,3),
|
||
has_trailer boolean DEFAULT false NOT NULL,
|
||
description text,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.user_trade_access (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
user_id uuid NOT NULL,
|
||
directions text DEFAULT ''::text NOT NULL,
|
||
updated_by_id uuid,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.vehicles (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
plate_number character varying NOT NULL,
|
||
registration_number character varying NOT NULL,
|
||
vehicle_type character varying NOT NULL,
|
||
manufacturer character varying NOT NULL,
|
||
model character varying NOT NULL,
|
||
year integer NOT NULL,
|
||
fuel_type character varying NOT NULL,
|
||
capacity numeric NOT NULL,
|
||
status character varying DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
description text,
|
||
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||
deleted_at timestamp without time zone,
|
||
assigned_driver_id uuid,
|
||
assigned_driver_name character varying,
|
||
code character varying,
|
||
power_plate_no character varying,
|
||
trailer_plate_no character varying,
|
||
estimated_distance_km numeric,
|
||
actual_distance_km numeric,
|
||
location_id uuid,
|
||
availability character varying DEFAULT 'FREE'::character varying,
|
||
vin character varying,
|
||
ownership character varying,
|
||
insurance_expiry date,
|
||
registration_expiry date,
|
||
next_inspection_date date,
|
||
price_per_km numeric(14,2),
|
||
currency character varying(8) DEFAULT 'ETB'::character varying NOT NULL,
|
||
truck_type_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.vendors (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
name character varying NOT NULL,
|
||
type character varying,
|
||
contact_person character varying,
|
||
phone character varying,
|
||
email character varying,
|
||
address character varying,
|
||
is_active boolean DEFAULT true NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.wagon_allocation_bulk_loads (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
wagon_booking_allocation_id uuid NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
cargo_type_id uuid,
|
||
cargo_description text,
|
||
pricing_unit character varying(20) DEFAULT 'PER_TON'::character varying NOT NULL,
|
||
quantity numeric(12,3) DEFAULT 0 NOT NULL,
|
||
weight_tons numeric(10,3) DEFAULT 0 NOT NULL,
|
||
truck_plate_number character varying(32),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.wagon_allocation_container_items (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
wagon_booking_allocation_id uuid NOT NULL,
|
||
booking_container_id uuid,
|
||
container_id uuid,
|
||
container_number character varying(64),
|
||
container_type_id uuid,
|
||
position_on_wagon smallint,
|
||
seal_number character varying(64),
|
||
chassis_number character varying(64),
|
||
gross_weight_tons numeric(10,3),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.wagon_booking_allocations (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
train_set_wagon_id uuid NOT NULL,
|
||
booking_id uuid NOT NULL,
|
||
allocated_weight_tons numeric(10,3) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
load_type character varying(20),
|
||
status character varying(20) DEFAULT 'PLANNED'::character varying NOT NULL,
|
||
confirmed_at timestamp with time zone,
|
||
confirmed_by_user_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.wagon_movements (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
wagon_id uuid NOT NULL,
|
||
from_yard_id uuid,
|
||
to_yard_id uuid NOT NULL,
|
||
train_schedule_id uuid,
|
||
booking_id uuid,
|
||
kind character varying(30) NOT NULL,
|
||
moved_by_user_id uuid,
|
||
occurred_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
transfer_request_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.wagon_transfer_requests (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
from_yard_id uuid NOT NULL,
|
||
to_yard_id uuid NOT NULL,
|
||
wagon_type_id uuid NOT NULL,
|
||
quantity integer NOT NULL,
|
||
status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
|
||
requested_by_user_id uuid,
|
||
fulfilled_by_user_id uuid,
|
||
fulfilled_at timestamp with time zone,
|
||
note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
reason text,
|
||
fulfilled_quantity integer DEFAULT 0 NOT NULL,
|
||
closed_short_at timestamp with time zone,
|
||
closed_short_by_user_id uuid,
|
||
CONSTRAINT chk_wtr_quantity CHECK ((quantity > 0))
|
||
);
|
||
|
||
CREATE TABLE freight.wagon_types (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
code character varying(32) NOT NULL,
|
||
name character varying(100) NOT NULL,
|
||
capacity_tons numeric(10,3) NOT NULL,
|
||
length_meters numeric(10,3) NOT NULL,
|
||
supported_load_types text[] DEFAULT '{}'::text[] NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
equated_length_m numeric(10,3),
|
||
tare_weight_tons numeric(10,3) NOT NULL,
|
||
supports_container boolean DEFAULT false NOT NULL,
|
||
max_container_gross_t numeric(10,3)
|
||
);
|
||
|
||
CREATE TABLE freight.wagons (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
wagon_number character varying NOT NULL,
|
||
wagon_type_id uuid NOT NULL,
|
||
train_id uuid,
|
||
sequence_number integer,
|
||
status character varying DEFAULT 'AVAILABLE'::character varying NOT NULL,
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
current_location_yard_id uuid,
|
||
train_set_wagon_id uuid,
|
||
current_train_schedule_id uuid,
|
||
current_yard_id uuid,
|
||
export_train_number character varying(20),
|
||
import_train_number character varying(20)
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_accrual_acks (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
inventory_id uuid NOT NULL,
|
||
acknowledged_by uuid,
|
||
acknowledged_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
snooze_until timestamp with time zone,
|
||
note text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_activity_log (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
inventory_id uuid,
|
||
warehouse_id uuid,
|
||
activity_type character varying(40) NOT NULL,
|
||
description text,
|
||
performed_by character varying(120),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_allocation_rules (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
name character varying(160) NOT NULL,
|
||
priority integer DEFAULT 100 NOT NULL,
|
||
freight_type character varying(16),
|
||
trade_direction character varying(16),
|
||
cargo_type_code character varying(50),
|
||
container_status character varying(24),
|
||
requires_inspection boolean,
|
||
target_facility_code character varying(40),
|
||
target_yard_code character varying(40) NOT NULL,
|
||
target_warehouse_code character varying(40),
|
||
target_zone_code character varying(40),
|
||
storage_type character varying(80),
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_fee_rules (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
name character varying(160) NOT NULL,
|
||
rule_type character varying(20) NOT NULL,
|
||
priority integer DEFAULT 100 NOT NULL,
|
||
freight_type character varying(16),
|
||
trade_direction character varying(16),
|
||
cargo_type_code character varying(50),
|
||
container_type character varying(40),
|
||
facility_id uuid,
|
||
warehouse_id uuid,
|
||
yard_id uuid,
|
||
zone_id uuid,
|
||
free_days integer DEFAULT 0 NOT NULL,
|
||
rate_per_day numeric(14,2) DEFAULT 0 NOT NULL,
|
||
tiers jsonb DEFAULT '[]'::jsonb NOT NULL,
|
||
currency character varying(8) DEFAULT 'USD'::character varying NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
basis character varying(20),
|
||
free_hours integer,
|
||
vehicle_type character varying(32)
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_inspection_reports (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
inventory_id uuid NOT NULL,
|
||
booking_id uuid,
|
||
customer_id uuid,
|
||
report_type character varying(32) DEFAULT 'INSPECTION'::character varying NOT NULL,
|
||
inspection_status character varying(20) DEFAULT 'NEEDS_REVIEW'::character varying NOT NULL,
|
||
has_damage boolean DEFAULT false NOT NULL,
|
||
damage_description text,
|
||
has_weight_loss boolean DEFAULT false NOT NULL,
|
||
expected_weight numeric(14,3),
|
||
actual_weight numeric(14,3),
|
||
weight_loss numeric(14,3),
|
||
weight_loss_unit character varying(12),
|
||
has_missing_items boolean DEFAULT false NOT NULL,
|
||
missing_items_description text,
|
||
remarks text,
|
||
inspected_by_id uuid,
|
||
inspected_at timestamp with time zone,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_inventory (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
warehouse_id uuid NOT NULL,
|
||
yard_id uuid NOT NULL,
|
||
zone_id uuid NOT NULL,
|
||
booking_id uuid,
|
||
cargo_id uuid,
|
||
container_id uuid,
|
||
goods_id uuid,
|
||
quantity numeric(12,3) DEFAULT 0 NOT NULL,
|
||
weight numeric(14,3) DEFAULT 0 NOT NULL,
|
||
volume numeric(12,3),
|
||
status character varying(32) DEFAULT 'RECEIVED'::character varying NOT NULL,
|
||
inspection_status character varying(20),
|
||
arrived_at timestamp with time zone,
|
||
inspected_at timestamp with time zone,
|
||
ready_for_loading_at timestamp with time zone,
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
stored_at timestamp with time zone,
|
||
reserved_at timestamp with time zone,
|
||
loaded_at timestamp with time zone,
|
||
dispatched_at timestamp with time zone,
|
||
inspection_started_at timestamp with time zone,
|
||
inspection_completed_at timestamp with time zone,
|
||
ready_for_pickup_at timestamp with time zone,
|
||
release_date timestamp with time zone,
|
||
gate_cleared_at timestamp with time zone,
|
||
release_order_reference character varying(100),
|
||
delivered_at timestamp with time zone,
|
||
unloaded_at timestamp with time zone,
|
||
grn_number character varying(100)
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_inventory_movement (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
inventory_id uuid NOT NULL,
|
||
from_warehouse_id uuid NOT NULL,
|
||
from_yard_id uuid NOT NULL,
|
||
from_zone_id uuid NOT NULL,
|
||
to_warehouse_id uuid NOT NULL,
|
||
to_yard_id uuid NOT NULL,
|
||
to_zone_id uuid NOT NULL,
|
||
remarks text,
|
||
moved_by character varying(120),
|
||
moved_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_loadings (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
warehouse_inventory_id uuid NOT NULL,
|
||
booking_id uuid,
|
||
wagon_id uuid,
|
||
loaded_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
loaded_by character varying(120),
|
||
loaded_weight numeric(14,3),
|
||
notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
train_schedule_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_yard_cargo_types (
|
||
yard_id uuid NOT NULL,
|
||
cargo_type_id uuid NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_yards (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
warehouse_id uuid NOT NULL,
|
||
name character varying(160) NOT NULL,
|
||
code character varying(40) NOT NULL,
|
||
type character varying(32) NOT NULL,
|
||
capacity_weight numeric(14,3),
|
||
capacity_containers integer,
|
||
current_weight numeric(14,3) DEFAULT 0 NOT NULL,
|
||
current_containers integer DEFAULT 0 NOT NULL,
|
||
status character varying(16) DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
max_weight numeric(14,3),
|
||
max_volume numeric(14,3),
|
||
current_volume numeric(14,3) DEFAULT 0 NOT NULL,
|
||
direction character varying(10)
|
||
);
|
||
|
||
CREATE TABLE freight.warehouse_zones (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
yard_id uuid NOT NULL,
|
||
name character varying(160) NOT NULL,
|
||
code character varying(40) NOT NULL,
|
||
type character varying(32) NOT NULL,
|
||
capacity_weight numeric(14,3),
|
||
capacity_containers integer,
|
||
current_weight numeric(14,3) DEFAULT 0 NOT NULL,
|
||
current_containers integer DEFAULT 0 NOT NULL,
|
||
status character varying(16) DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
max_weight numeric(14,3),
|
||
max_volume numeric(14,3),
|
||
current_volume numeric(14,3) DEFAULT 0 NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.warehouses (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
name character varying(160) NOT NULL,
|
||
code character varying(40) NOT NULL,
|
||
type character varying(32) NOT NULL,
|
||
station_id uuid,
|
||
location_name character varying(200),
|
||
capacity_weight numeric(14,3),
|
||
capacity_containers integer,
|
||
current_weight numeric(14,3) DEFAULT 0 NOT NULL,
|
||
current_containers integer DEFAULT 0 NOT NULL,
|
||
status character varying(16) DEFAULT 'ACTIVE'::character varying NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
max_weight numeric(14,3),
|
||
max_volume numeric(14,3),
|
||
current_volume numeric(14,3) DEFAULT 0 NOT NULL,
|
||
facility_id uuid
|
||
);
|
||
|
||
CREATE TABLE freight.warranties (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
component character varying NOT NULL,
|
||
provider character varying,
|
||
start_date date,
|
||
expiry_date date NOT NULL,
|
||
coverage_notes text,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.weight_limit_rules (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
container_type_id uuid NOT NULL,
|
||
trade_direction freight.weight_limit_rules_trade_direction_enum NOT NULL,
|
||
max_vgm_tons numeric(8,3) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
max_capacity_tons numeric(8,3)
|
||
);
|
||
|
||
CREATE TABLE freight.work_orders (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
vehicle_id uuid NOT NULL,
|
||
title character varying NOT NULL,
|
||
description text,
|
||
status character varying DEFAULT 'OPEN'::character varying NOT NULL,
|
||
priority character varying DEFAULT 'MEDIUM'::character varying NOT NULL,
|
||
assigned_to character varying,
|
||
opened_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
closed_at timestamp with time zone,
|
||
labor_cost numeric(14,2),
|
||
parts_cost numeric(14,2),
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.yard_distances (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
from_yard_id uuid NOT NULL,
|
||
to_yard_id uuid NOT NULL,
|
||
distance_km numeric(10,2) NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone
|
||
);
|
||
|
||
CREATE TABLE freight.yard_facilities (
|
||
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
||
yard_id uuid NOT NULL,
|
||
has_warehouse boolean DEFAULT false NOT NULL,
|
||
equipment_notes text,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
handles_container boolean DEFAULT true NOT NULL,
|
||
handles_bulk boolean DEFAULT true NOT NULL,
|
||
has_container_facility_origin boolean DEFAULT false NOT NULL,
|
||
has_bulk_facility_origin boolean DEFAULT false NOT NULL,
|
||
has_container_facility_destination boolean DEFAULT false NOT NULL,
|
||
has_bulk_facility_destination boolean DEFAULT false NOT NULL
|
||
);
|
||
|
||
CREATE TABLE freight.yards (
|
||
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
|
||
code character varying(40) NOT NULL,
|
||
label character varying(100) NOT NULL,
|
||
country character varying(50) NOT NULL,
|
||
is_active boolean DEFAULT true NOT NULL,
|
||
display_order integer DEFAULT 1 NOT NULL,
|
||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||
deleted_at timestamp with time zone,
|
||
has_facility boolean DEFAULT false NOT NULL,
|
||
CONSTRAINT chk_yards_country CHECK (((country)::text = ANY ((ARRAY['Ethiopia'::character varying, 'Djibouti'::character varying])::text[])))
|
||
);
|
||
|
||
ALTER TABLE ONLY freight.approval_rules
|
||
ADD CONSTRAINT "PK_048d2ffdf7169337b4cc237d772" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.company_change_request
|
||
ADD CONSTRAINT "PK_0a57bba5aaf77b376e7fee5fcf8" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.interchange_document_items
|
||
ADD CONSTRAINT "PK_163803862ca83ef98678e39a43b" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.company_profiles
|
||
ADD CONSTRAINT "PK_1980200b310bd1e2ac86aa1ae4a" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.service_types
|
||
ADD CONSTRAINT "PK_1dc93417a097cdee3491f39d7cc" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_composition_removal_logs
|
||
ADD CONSTRAINT "PK_29f7cdb5e0ae32ef1b96155fc9a" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.rates
|
||
ADD CONSTRAINT "PK_2c804ed4019b80ce48eedba5cec" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.facilities
|
||
ADD CONSTRAINT "PK_2e6c685b2e1195e6d6394a22bc7" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_allocation_rules
|
||
ADD CONSTRAINT "PK_2e7632f009769d4da579c14f151" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.shipping_lines
|
||
ADD CONSTRAINT "PK_336306f24563d798ec54eedca0c" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.import_djibouti_operations
|
||
ADD CONSTRAINT "PK_3456f58d03f6719b38c70018ab6" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.yards
|
||
ADD CONSTRAINT "PK_3aa7dacb4c4fb065b1e2f8dfb5a" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_document_review
|
||
ADD CONSTRAINT "PK_3d7705ea54a01cb4d6db5b743cd" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.exchange_settings
|
||
ADD CONSTRAINT "PK_48f5730ce6881caf75f279d0a5d" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.container_types
|
||
ADD CONSTRAINT "PK_50e6b62fcd07ba58bdb6415d47c" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inspection_reports
|
||
ADD CONSTRAINT "PK_625df1e3a62e5aa4c3f14e7172e" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_requests
|
||
ADD CONSTRAINT "PK_62c29ee249979fe0bcdcde33dae" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.first_mile
|
||
ADD CONSTRAINT "PK_72bc92607db5356f03c2aaeb6ec" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.first_mile_container_allocations
|
||
ADD CONSTRAINT "PK_8be4b0df481f8a1555a4fb9d05d" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile
|
||
ADD CONSTRAINT "PK_8be9fbd78fd39e78b6d30ab119b" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_rate_snapshot
|
||
ADD CONSTRAINT "PK_8ca5cf692c4c3e95d91a7343117" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.otp_verifications
|
||
ADD CONSTRAINT pk_otp_verifications PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.user_trade_access
|
||
ADD CONSTRAINT "PK_94e21d7bfb20e57940e3255df87" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.priority_rules
|
||
ADD CONSTRAINT "PK_95c73e8a6e80f29d81edf66dbe2" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.interchange_documents
|
||
ADD CONSTRAINT "PK_95e5a5484c57ecc6f4a2927ddb4" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_container_allocations
|
||
ADD CONSTRAINT "PK_9d5180799a6dd494156ec980dfb" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_container
|
||
ADD CONSTRAINT "PK_c1805410bccc51530297b2960ef" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.company_revisions
|
||
ADD CONSTRAINT "PK_c8ed8b5e0e0d93edffd43c8c024" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.cargo_type_wagon_types
|
||
ADD CONSTRAINT "PK_cargo_type_wagon_types" PRIMARY KEY (cargo_type_id, wagon_type_id);
|
||
|
||
ALTER TABLE ONLY freight.djibouti_import_incidents
|
||
ADD CONSTRAINT "PK_cf3871f27f8bd0db9176f09bf95" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.container_type_wagon_types
|
||
ADD CONSTRAINT "PK_container_type_wagon_types" PRIMARY KEY (container_type_id, wagon_type_id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_fee_rules
|
||
ADD CONSTRAINT "PK_d24f444e0cb6841c1b19342e134" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.companies
|
||
ADD CONSTRAINT "PK_d4bc3e82a314fa9e29f652c2c22" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.weight_limit_rules
|
||
ADD CONSTRAINT "PK_d82c70fa7e878ca301e2aaff709" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_cargo_modifier
|
||
ADD CONSTRAINT "PK_d949ef8f1b862135ad7e4afdbf1" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.cargo_types
|
||
ADD CONSTRAINT "PK_db1aa5f07b0c5ea996eaea03394" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.dropdown_options
|
||
ADD CONSTRAINT "PK_dropdown_options" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.dropdown_settings
|
||
ADD CONSTRAINT "PK_dropdown_settings" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.ff_clients
|
||
ADD CONSTRAINT "PK_eb91bf3ee74a361acee369dbda2" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.external_profiles
|
||
ADD CONSTRAINT "PK_f01bade59a434fa68039620ccb9" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.import_customs_finalizations
|
||
ADD CONSTRAINT "PK_f67c60e65b732153fc050dd166c" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.empty_container_returns
|
||
ADD CONSTRAINT "PK_f82bda09e0ff411811193579948" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_container_allocations
|
||
ADD CONSTRAINT "PK_fb0dee3634a65d2ebd734ff46e3" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.schedule_wagon_adjustment_logs
|
||
ADD CONSTRAINT "PK_schedule_wagon_adjustment_logs" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_locomotives
|
||
ADD CONSTRAINT "PK_train_locomotives" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_set_locomotives
|
||
ADD CONSTRAINT "PK_train_set_locomotives" PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.companies
|
||
ADD CONSTRAINT "UQ_1b3738f728d42fc9aca8d4ac19b" UNIQUE (tin);
|
||
|
||
ALTER TABLE ONLY freight.ff_clients
|
||
ADD CONSTRAINT "UQ_4107fef2abf7128f890ef276244" UNIQUE (forwarder_company_id, client_company_id);
|
||
|
||
ALTER TABLE ONLY freight.otp_verifications
|
||
ADD CONSTRAINT uq_otp_verifications_phone UNIQUE (phone);
|
||
|
||
ALTER TABLE ONLY freight.company_profiles
|
||
ADD CONSTRAINT "UQ_539ff8f8225951adb2ef76b0313" UNIQUE (reference);
|
||
|
||
ALTER TABLE ONLY freight.import_djibouti_operations
|
||
ADD CONSTRAINT "UQ_6c3e3046300b152a13505bf8ffd" UNIQUE (train_schedule_id);
|
||
|
||
ALTER TABLE ONLY freight.first_mile_vehicle_assignments
|
||
ADD CONSTRAINT "UQ_FIRST_MILE_VEHICLE" UNIQUE (first_mile_id, vehicle_id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_vehicle_assignments
|
||
ADD CONSTRAINT "UQ_LAST_MILE_VEHICLE" UNIQUE (last_mile_id, vehicle_id);
|
||
|
||
ALTER TABLE ONLY freight.import_customs_finalizations
|
||
ADD CONSTRAINT "UQ_ad87af234cc0068a05fa7bd2335" UNIQUE (booking_id);
|
||
|
||
ALTER TABLE ONLY freight.approval_rules
|
||
ADD CONSTRAINT "UQ_approval_rules_chain_step" UNIQUE (requires_director_approval, step_order);
|
||
|
||
ALTER TABLE ONLY freight.interchange_documents
|
||
ADD CONSTRAINT "UQ_b44369ad5b13e0d897487fc4284" UNIQUE (document_no);
|
||
|
||
ALTER TABLE ONLY freight.facilities
|
||
ADD CONSTRAINT "UQ_bf808b325b190fb9049254ba55e" UNIQUE (code);
|
||
|
||
ALTER TABLE ONLY freight.user_trade_access
|
||
ADD CONSTRAINT "UQ_e54889f850f4db112a77b9e8431" UNIQUE (user_id);
|
||
|
||
ALTER TABLE ONLY freight.asset_acquisitions
|
||
ADD CONSTRAINT asset_acquisitions_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.asset_disposals
|
||
ADD CONSTRAINT asset_disposals_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_batch_offers
|
||
ADD CONSTRAINT booking_batch_offers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_container_units
|
||
ADD CONSTRAINT booking_container_units_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_contract_signatures
|
||
ADD CONSTRAINT booking_contract_signatures_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_handovers
|
||
ADD CONSTRAINT booking_handovers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_review_note
|
||
ADD CONSTRAINT booking_review_note_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT bookings_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT bookings_reference_key UNIQUE (reference);
|
||
|
||
ALTER TABLE ONLY freight.cargoes
|
||
ADD CONSTRAINT cargoes_cargo_reference_key UNIQUE (cargo_reference);
|
||
|
||
ALTER TABLE ONLY freight.cargoes
|
||
ADD CONSTRAINT cargoes_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.clearance_incidents
|
||
ADD CONSTRAINT clearance_incidents_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.clearance_milestones
|
||
ADD CONSTRAINT clearance_milestones_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.compliance_records
|
||
ADD CONSTRAINT compliance_records_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT containers_container_number_key UNIQUE (container_number);
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT containers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_approval_steps
|
||
ADD CONSTRAINT contract_approval_steps_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_cargo_scope
|
||
ADD CONSTRAINT contract_cargo_scope_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_clearance_cycles
|
||
ADD CONSTRAINT contract_clearance_cycles_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_document_review
|
||
ADD CONSTRAINT contract_document_review_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_document_revisions
|
||
ADD CONSTRAINT contract_document_revisions_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_rate_snapshots
|
||
ADD CONSTRAINT contract_rate_snapshots_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_review_notes
|
||
ADD CONSTRAINT contract_review_notes_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_routes
|
||
ADD CONSTRAINT contract_routes_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_signatures
|
||
ADD CONSTRAINT contract_signatures_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contract_templates
|
||
ADD CONSTRAINT contract_templates_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contracts
|
||
ADD CONSTRAINT contracts_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.contracts
|
||
ADD CONSTRAINT contracts_reference_key UNIQUE (reference);
|
||
|
||
ALTER TABLE ONLY freight.customer_truck_assignments
|
||
ADD CONSTRAINT customer_truck_assignments_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.customer_truck_containers
|
||
ADD CONSTRAINT customer_truck_containers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.customers
|
||
ADD CONSTRAINT customers_email_key UNIQUE (email);
|
||
|
||
ALTER TABLE ONLY freight.customers
|
||
ADD CONSTRAINT customers_fan_number_key UNIQUE (fan_number);
|
||
|
||
ALTER TABLE ONLY freight.customers
|
||
ADD CONSTRAINT customers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.customers
|
||
ADD CONSTRAINT customers_tin_number_key UNIQUE (tin_number);
|
||
|
||
ALTER TABLE ONLY freight.drivers
|
||
ADD CONSTRAINT drivers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.facility_handling_events
|
||
ADD CONSTRAINT facility_handling_events_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.fayda_verification_sessions
|
||
ADD CONSTRAINT fayda_verification_sessions_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.fayda_verification_sessions
|
||
ADD CONSTRAINT fayda_verification_sessions_state_key UNIQUE (state);
|
||
|
||
ALTER TABLE ONLY freight.file_upload_fields
|
||
ADD CONSTRAINT file_upload_fields_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.file_upload_settings
|
||
ADD CONSTRAINT file_upload_settings_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.files
|
||
ADD CONSTRAINT files_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.first_mile_vehicle_assignments
|
||
ADD CONSTRAINT first_mile_vehicle_assignments_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.fleet_events
|
||
ADD CONSTRAINT fleet_events_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.gps_devices
|
||
ADD CONSTRAINT gps_devices_imei_key UNIQUE (imei);
|
||
|
||
ALTER TABLE ONLY freight.gps_devices
|
||
ADD CONSTRAINT gps_devices_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.gps_positions
|
||
ADD CONSTRAINT gps_positions_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.incidents
|
||
ADD CONSTRAINT incidents_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_vehicle_assignments
|
||
ADD CONSTRAINT last_mile_vehicle_assignments_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_vehicle_containers
|
||
ADD CONSTRAINT last_mile_vehicle_containers_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.locomotives
|
||
ADD CONSTRAINT locomotives_code_key UNIQUE (code);
|
||
|
||
ALTER TABLE ONLY freight.locomotives
|
||
ADD CONSTRAINT locomotives_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.maintenance_costs
|
||
ADD CONSTRAINT maintenance_costs_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.maintenance_intervals
|
||
ADD CONSTRAINT maintenance_intervals_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.maintenance_schedules
|
||
ADD CONSTRAINT maintenance_schedules_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.notifications
|
||
ADD CONSTRAINT notifications_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.otp_verifications
|
||
ADD CONSTRAINT otp_verifications_email_key UNIQUE (email);
|
||
|
||
ALTER TABLE ONLY freight.parts
|
||
ADD CONSTRAINT parts_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.consignments
|
||
ADD CONSTRAINT pk_consignments PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.fuel_consumption
|
||
ADD CONSTRAINT pk_fuel_consumption PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.fuel_purchases
|
||
ADD CONSTRAINT pk_fuel_purchases PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.invoice_lines
|
||
ADD CONSTRAINT pk_invoice_lines PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.invoices
|
||
ADD CONSTRAINT pk_invoices PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.payment_refunds
|
||
ADD CONSTRAINT pk_payment_refunds PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.payment_webhook_events
|
||
ADD CONSTRAINT pk_payment_webhook_events PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.payments
|
||
ADD CONSTRAINT pk_payments PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.tracking_events
|
||
ADD CONSTRAINT pk_tracking_events PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_transfer_requests
|
||
ADD CONSTRAINT pk_wagon_transfer_requests PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.priority_configs
|
||
ADD CONSTRAINT priority_configs_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.priority_rule_change_requests
|
||
ADD CONSTRAINT priority_rule_change_requests_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.rate_change_requests
|
||
ADD CONSTRAINT rate_change_requests_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.route_milestones
|
||
ADD CONSTRAINT route_milestones_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.routes
|
||
ADD CONSTRAINT routes_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.saved_signatures
|
||
ADD CONSTRAINT saved_signatures_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.scheduling_events
|
||
ADD CONSTRAINT scheduling_events_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.support_conversations
|
||
ADD CONSTRAINT support_conversations_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.support_messages
|
||
ADD CONSTRAINT support_messages_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_checkpoint_events
|
||
ADD CONSTRAINT train_checkpoint_events_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedule_bookings
|
||
ADD CONSTRAINT train_schedule_bookings_booking_id_key UNIQUE (booking_id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedule_bookings
|
||
ADD CONSTRAINT train_schedule_bookings_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedules
|
||
ADD CONSTRAINT train_schedules_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedules
|
||
ADD CONSTRAINT train_schedules_train_set_id_key UNIQUE (train_set_id);
|
||
|
||
ALTER TABLE ONLY freight.train_scheduling_global_rules
|
||
ADD CONSTRAINT train_scheduling_global_rules_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT train_set_wagons_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.train_sets
|
||
ADD CONSTRAINT train_sets_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.trains
|
||
ADD CONSTRAINT trains_code_key UNIQUE (code);
|
||
|
||
ALTER TABLE ONLY freight.trains
|
||
ADD CONSTRAINT trains_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.transit_agents
|
||
ADD CONSTRAINT transit_agents_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.truck_types
|
||
ADD CONSTRAINT truck_types_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.booking_container_units
|
||
ADD CONSTRAINT uq_booking_container_unit_number UNIQUE (booking_container_id, container_number);
|
||
|
||
ALTER TABLE ONLY freight.booking_contract_signatures
|
||
ADD CONSTRAINT uq_booking_contract_signatures_role UNIQUE (booking_id, signer_role);
|
||
|
||
ALTER TABLE ONLY freight.consignments
|
||
ADD CONSTRAINT uq_consignments_tracking_number UNIQUE (tracking_number);
|
||
|
||
ALTER TABLE ONLY freight.contract_clearance_cycles
|
||
ADD CONSTRAINT uq_contract_clearance_cycle UNIQUE (contract_id, cycle_number);
|
||
|
||
ALTER TABLE ONLY freight.contract_cargo_scope
|
||
ADD CONSTRAINT uq_contract_container_size UNIQUE NULLS NOT DISTINCT (contract_id, container_size);
|
||
|
||
ALTER TABLE ONLY freight.contract_document_review
|
||
ADD CONSTRAINT uq_contract_document_review_doc UNIQUE NULLS NOT DISTINCT (contract_id, clearance_cycle_id, setting_code, file_key);
|
||
|
||
ALTER TABLE ONLY freight.contract_routes
|
||
ADD CONSTRAINT uq_contract_route UNIQUE (contract_id, origin_yard_id, destination_yard_id);
|
||
|
||
ALTER TABLE ONLY freight.contract_templates
|
||
ADD CONSTRAINT uq_contract_templates_code UNIQUE (code);
|
||
|
||
ALTER TABLE ONLY freight.fuel_consumption
|
||
ADD CONSTRAINT uq_fuel_consumption_vehicle_month UNIQUE (vehicle_id, month);
|
||
|
||
ALTER TABLE ONLY freight.invoices
|
||
ADD CONSTRAINT uq_invoices_invoice_number UNIQUE (invoice_number);
|
||
|
||
ALTER TABLE ONLY freight.payment_webhook_events
|
||
ADD CONSTRAINT uq_payment_webhook_events_provider_event UNIQUE (provider, external_event_id);
|
||
|
||
ALTER TABLE ONLY freight.payments
|
||
ADD CONSTRAINT uq_payments_merchant_order_id UNIQUE (merchant_order_id);
|
||
|
||
ALTER TABLE ONLY freight.payments
|
||
ADD CONSTRAINT uq_payments_transaction_id UNIQUE (transaction_id);
|
||
|
||
ALTER TABLE ONLY freight.route_milestones
|
||
ADD CONSTRAINT uq_route_milestones_route_sequence UNIQUE (route_id, sequence_no);
|
||
|
||
ALTER TABLE ONLY freight.saved_signatures
|
||
ADD CONSTRAINT uq_saved_signatures_user_id UNIQUE (user_id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedule_bookings
|
||
ADD CONSTRAINT uq_train_schedule_booking UNIQUE (train_schedule_id, booking_id);
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT uq_train_set_wagons_sequence UNIQUE (train_set_id, sequence_no);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_yards
|
||
ADD CONSTRAINT uq_warehouse_yards_code UNIQUE (warehouse_id, code);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_zones
|
||
ADD CONSTRAINT uq_warehouse_zones_code UNIQUE (yard_id, code);
|
||
|
||
ALTER TABLE ONLY freight.vehicles
|
||
ADD CONSTRAINT vehicles_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.vehicles
|
||
ADD CONSTRAINT vehicles_plate_number_key UNIQUE (plate_number);
|
||
|
||
ALTER TABLE ONLY freight.vehicles
|
||
ADD CONSTRAINT vehicles_registration_number_key UNIQUE (registration_number);
|
||
|
||
ALTER TABLE ONLY freight.vendors
|
||
ADD CONSTRAINT vendors_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
|
||
ADD CONSTRAINT wagon_allocation_bulk_loads_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
|
||
ADD CONSTRAINT wagon_allocation_bulk_loads_wagon_booking_allocation_id_key UNIQUE (wagon_booking_allocation_id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_container_items
|
||
ADD CONSTRAINT wagon_allocation_container_items_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_booking_allocations
|
||
ADD CONSTRAINT wagon_booking_allocations_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT wagon_movements_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_types
|
||
ADD CONSTRAINT wagon_types_code_key UNIQUE (code);
|
||
|
||
ALTER TABLE ONLY freight.wagon_types
|
||
ADD CONSTRAINT wagon_types_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT wagons_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_accrual_acks
|
||
ADD CONSTRAINT warehouse_accrual_acks_inventory_id_key UNIQUE (inventory_id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_accrual_acks
|
||
ADD CONSTRAINT warehouse_accrual_acks_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_activity_log
|
||
ADD CONSTRAINT warehouse_activity_log_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inventory_movement
|
||
ADD CONSTRAINT warehouse_inventory_movement_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inventory
|
||
ADD CONSTRAINT warehouse_inventory_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_loadings
|
||
ADD CONSTRAINT warehouse_loadings_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_yard_cargo_types
|
||
ADD CONSTRAINT warehouse_yard_cargo_types_pkey PRIMARY KEY (yard_id, cargo_type_id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_yards
|
||
ADD CONSTRAINT warehouse_yards_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_zones
|
||
ADD CONSTRAINT warehouse_zones_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warehouses
|
||
ADD CONSTRAINT warehouses_code_key UNIQUE (code);
|
||
|
||
ALTER TABLE ONLY freight.warehouses
|
||
ADD CONSTRAINT warehouses_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.warranties
|
||
ADD CONSTRAINT warranties_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.work_orders
|
||
ADD CONSTRAINT work_orders_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.yard_distances
|
||
ADD CONSTRAINT yard_distances_pkey PRIMARY KEY (id);
|
||
|
||
ALTER TABLE ONLY freight.yard_facilities
|
||
ADD CONSTRAINT yard_facilities_pkey PRIMARY KEY (id);
|
||
|
||
CREATE INDEX "IDX_1101fbe8e745d91b6bd0747b58" ON freight.ff_clients USING btree (forwarder_company_id);
|
||
|
||
CREATE INDEX "IDX_1b3738f728d42fc9aca8d4ac19" ON freight.companies USING btree (tin);
|
||
|
||
CREATE INDEX "IDX_1e57cd6c6afae8f303847f159d" ON freight.companies USING btree (type);
|
||
|
||
CREATE INDEX "IDX_26d2a16e263ab4fe0a4c8e9195" ON freight.external_profiles USING btree (company_id);
|
||
|
||
CREATE INDEX "IDX_30228dd283a0f14486346e1db9" ON freight.company_profiles USING btree (company_id);
|
||
|
||
CREATE INDEX "IDX_CARGO_TYPES_DISPLAY_ORDER" ON freight.cargo_types USING btree (display_order);
|
||
|
||
CREATE INDEX "IDX_CARGO_TYPES_IS_ACTIVE" ON freight.cargo_types USING btree (is_active);
|
||
|
||
CREATE INDEX "IDX_CARGO_TYPES_PARENT_GROUP_ID" ON freight.cargo_types USING btree (parent_group_id);
|
||
|
||
CREATE INDEX "IDX_FAYDA_SESSIONS_EXPIRES_AT" ON freight.fayda_verification_sessions USING btree (expires_at);
|
||
|
||
CREATE INDEX "IDX_FAYDA_SESSIONS_IAM_USER_ID" ON freight.fayda_verification_sessions USING btree (iam_user_id);
|
||
|
||
CREATE INDEX "IDX_FILES_RESOURCE_LOOKUP" ON freight.files USING btree (resource, resource_id) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX "IDX_FLEET_EVENTS_DRIVER" ON freight.fleet_events USING btree (driver_id, created_at);
|
||
|
||
CREATE INDEX "IDX_FLEET_EVENTS_VEHICLE" ON freight.fleet_events USING btree (vehicle_id, created_at);
|
||
|
||
CREATE INDEX "IDX_FM_VEHICLE_ASSIGNMENTS_VEHICLE" ON freight.first_mile_vehicle_assignments USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_GPS_DEVICES_VEHICLE" ON freight.gps_devices USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_GPS_POSITIONS_DEVICE_TIME" ON freight.gps_positions USING btree (device_id, gps_time);
|
||
|
||
CREATE INDEX "IDX_GPS_POSITIONS_VEHICLE_TIME" ON freight.gps_positions USING btree (vehicle_id, gps_time);
|
||
|
||
CREATE INDEX "IDX_INCIDENTS_DRIVER" ON freight.incidents USING btree (driver_id, occurred_at);
|
||
|
||
CREATE INDEX "IDX_INCIDENTS_VEHICLE" ON freight.incidents USING btree (vehicle_id, occurred_at);
|
||
|
||
CREATE INDEX "IDX_LM_VEHICLE_ASSIGNMENTS_VEHICLE" ON freight.last_mile_vehicle_assignments USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_NOTIFICATIONS_RECIPIENT_CREATED" ON freight.notifications USING btree (recipient_user_id, created_at);
|
||
|
||
CREATE INDEX "IDX_NOTIFICATIONS_RECIPIENT_UNREAD" ON freight.notifications USING btree (recipient_user_id, is_read);
|
||
|
||
CREATE INDEX "IDX_SERVICE_TYPES_DISPLAY_ORDER" ON freight.service_types USING btree (display_order);
|
||
|
||
CREATE INDEX "IDX_SERVICE_TYPES_IS_ACTIVE" ON freight.service_types USING btree (is_active);
|
||
|
||
CREATE UNIQUE INDEX "IDX_SUPPORT_CONV_COMPANY" ON freight.support_conversations USING btree (company_id) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX "IDX_SUPPORT_CONV_LASTMSG" ON freight.support_conversations USING btree (last_message_at);
|
||
|
||
CREATE INDEX "IDX_SUPPORT_MSG_CONV_CREATED" ON freight.support_messages USING btree (conversation_id, created_at);
|
||
|
||
CREATE INDEX "IDX_af4d6bac2844d39095b2056e97" ON freight.ff_clients USING btree (client_company_id);
|
||
|
||
CREATE INDEX "IDX_b658cd8f6876645a05c0366a56" ON freight.external_profiles USING btree (user_id);
|
||
|
||
CREATE INDEX "IDX_booking_cargo_modifier_rate_id" ON freight.booking_cargo_modifier USING btree (rate_id);
|
||
|
||
CREATE INDEX "IDX_booking_container_allocations_booking_id" ON freight.booking_container_allocations USING btree (booking_id);
|
||
|
||
CREATE INDEX "IDX_booking_container_allocations_vehicle_id" ON freight.booking_container_allocations USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_booking_container_units_grn" ON freight.booking_container_units USING btree (grn_number);
|
||
|
||
CREATE INDEX "IDX_booking_handovers_booking" ON freight.booking_handovers USING btree (booking_id);
|
||
|
||
CREATE UNIQUE INDEX "IDX_cargo_types_code" ON freight.cargo_types USING btree (code);
|
||
|
||
CREATE INDEX "IDX_cargoes_container_id" ON freight.cargoes USING btree (container_id);
|
||
|
||
CREATE INDEX "IDX_companies_kind" ON freight.companies USING btree (kind);
|
||
|
||
CREATE INDEX "IDX_container_types_is_active" ON freight.container_types USING btree (is_active);
|
||
|
||
CREATE UNIQUE INDEX "IDX_container_types_size_code" ON freight.container_types USING btree (code);
|
||
|
||
CREATE INDEX "IDX_containers_wagon_id" ON freight.containers USING btree (wagon_id);
|
||
|
||
CREATE INDEX "IDX_customer_truck_assignments_booking" ON freight.customer_truck_assignments USING btree (booking_id);
|
||
|
||
CREATE INDEX "IDX_customer_truck_containers_assignment" ON freight.customer_truck_containers USING btree (assignment_id);
|
||
|
||
CREATE INDEX "IDX_customer_truck_departed" ON freight.customer_truck_assignments USING btree (booking_id, departed_at) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX "IDX_dc808839c3d64c763cc7f6ff68" ON freight.company_profiles USING btree (type);
|
||
|
||
CREATE INDEX "IDX_e669a91069a3aa982b2c99c256" ON freight.train_composition_removal_logs USING btree (schedule_id);
|
||
|
||
CREATE INDEX "IDX_facility_handling_events_booking" ON freight.facility_handling_events USING btree (booking_id);
|
||
|
||
CREATE INDEX "IDX_facility_handling_events_grn" ON freight.facility_handling_events USING btree (grn_number) WHERE (grn_number IS NOT NULL);
|
||
|
||
CREATE INDEX "IDX_facility_handling_events_yard" ON freight.facility_handling_events USING btree (yard_id);
|
||
|
||
CREATE INDEX "IDX_files_open_change_request" ON freight.files USING btree (resource, resource_id) WHERE (((review_status)::text = 'change_requested'::text) AND (deleted_at IS NULL));
|
||
|
||
CREATE INDEX "IDX_files_version_history" ON freight.files USING btree (resource, resource_id, code, created_at DESC);
|
||
|
||
CREATE INDEX "IDX_first_mile_booking_id" ON freight.first_mile USING btree (booking_id);
|
||
|
||
CREATE INDEX "IDX_first_mile_container_allocations_first_mile_id" ON freight.first_mile_container_allocations USING btree (first_mile_id);
|
||
|
||
CREATE INDEX "IDX_first_mile_container_allocations_vehicle_id" ON freight.first_mile_container_allocations USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_first_mile_status" ON freight.first_mile USING btree (status);
|
||
|
||
CREATE INDEX "IDX_first_mile_vehicle_id" ON freight.first_mile USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_freight_customers_email" ON freight.customers USING btree (email);
|
||
|
||
CREATE INDEX "IDX_freight_files_resource" ON freight.files USING btree (resource_id, resource);
|
||
|
||
CREATE INDEX "IDX_freight_files_resource_code" ON freight.files USING btree (resource_id, resource, code);
|
||
|
||
CREATE INDEX "IDX_last_mile_booking_id" ON freight.last_mile USING btree (booking_id);
|
||
|
||
CREATE INDEX "IDX_last_mile_container_allocations_last_mile_id" ON freight.last_mile_container_allocations USING btree (last_mile_id);
|
||
|
||
CREATE INDEX "IDX_last_mile_container_allocations_vehicle_id" ON freight.last_mile_container_allocations USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_last_mile_status" ON freight.last_mile USING btree (status);
|
||
|
||
CREATE INDEX "IDX_last_mile_vehicle_containers_assignment" ON freight.last_mile_vehicle_containers USING btree (assignment_id);
|
||
|
||
CREATE INDEX "IDX_last_mile_vehicle_id" ON freight.last_mile USING btree (vehicle_id);
|
||
|
||
CREATE INDEX "IDX_locomotive_current_yard_id" ON freight.locomotives USING btree (current_yard_id);
|
||
|
||
CREATE INDEX "IDX_maintenance_intervals_vehicle_type" ON freight.maintenance_intervals USING btree (vehicle_id, maintenance_type);
|
||
|
||
CREATE INDEX "IDX_parts_category" ON freight.parts USING btree (category);
|
||
|
||
CREATE INDEX "IDX_priority_rules_is_active" ON freight.priority_rules USING btree (is_active);
|
||
|
||
CREATE INDEX "IDX_rates_destination_yard_id" ON freight.rates USING btree (destination_yard_id);
|
||
|
||
CREATE INDEX "IDX_rates_origin_yard_id" ON freight.rates USING btree (origin_yard_id);
|
||
|
||
CREATE INDEX "IDX_rates_trigger" ON freight.rates USING btree (trigger);
|
||
|
||
CREATE INDEX "IDX_routes_status" ON freight.routes USING btree (status);
|
||
|
||
CREATE UNIQUE INDEX "IDX_service_types_code" ON freight.service_types USING btree (code);
|
||
|
||
CREATE INDEX "IDX_swal_train_id" ON freight.schedule_wagon_adjustment_logs USING btree (train_id);
|
||
|
||
CREATE INDEX "IDX_swal_train_schedule_id" ON freight.schedule_wagon_adjustment_logs USING btree (train_schedule_id);
|
||
|
||
CREATE INDEX "IDX_train_sets_train_id" ON freight.train_sets USING btree (train_id);
|
||
|
||
CREATE INDEX "IDX_trains_current_yard_id" ON freight.trains USING btree (current_yard_id);
|
||
|
||
CREATE INDEX "IDX_wagon_current_yard_id" ON freight.wagons USING btree (current_yard_id);
|
||
|
||
CREATE INDEX "IDX_wagon_movements_schedule" ON freight.wagon_movements USING btree (train_schedule_id);
|
||
|
||
CREATE INDEX "IDX_wagon_movements_wagon_occurred" ON freight.wagon_movements USING btree (wagon_id, occurred_at);
|
||
|
||
CREATE INDEX "IDX_wagons_current_location_yard_id" ON freight.wagons USING btree (current_location_yard_id);
|
||
|
||
CREATE INDEX "IDX_wagons_train_id" ON freight.wagons USING btree (train_id);
|
||
|
||
CREATE INDEX "IDX_warranties_vehicle_id_expiry_date" ON freight.warranties USING btree (vehicle_id, expiry_date);
|
||
|
||
CREATE INDEX "IDX_weight_limit_rules_container_type_id" ON freight.weight_limit_rules USING btree (container_type_id);
|
||
|
||
CREATE INDEX "IDX_work_orders_vehicle_id_status" ON freight.work_orders USING btree (vehicle_id, status);
|
||
|
||
CREATE UNIQUE INDEX "UQ_DRIVERS_EMAIL_ACTIVE" ON freight.drivers USING btree (email) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_DRIVERS_FAYDA_SUB_ACTIVE" ON freight.drivers USING btree (fayda_sub) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_DRIVERS_LICENSE_ACTIVE" ON freight.drivers USING btree (license_number) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_DRIVERS_PHONE_ACTIVE" ON freight.drivers USING btree (phone_number) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_booking_handovers_booking_edr_truck" ON freight.booking_handovers USING btree (booking_id, edr_assignment_id) WHERE ((deleted_at IS NULL) AND (edr_assignment_id IS NOT NULL));
|
||
|
||
CREATE UNIQUE INDEX "UQ_booking_handovers_booking_truck" ON freight.booking_handovers USING btree (booking_id, truck_assignment_id) WHERE ((deleted_at IS NULL) AND (truck_assignment_id IS NOT NULL));
|
||
|
||
CREATE UNIQUE INDEX "UQ_customer_truck_containers_booking_number" ON freight.customer_truck_containers USING btree (booking_id, container_number) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_dropdown_options_setting_value" ON freight.dropdown_options USING btree (setting_id, value);
|
||
|
||
CREATE UNIQUE INDEX "UQ_dropdown_settings_code" ON freight.dropdown_settings USING btree (code);
|
||
|
||
CREATE UNIQUE INDEX "UQ_file_upload_fields_setting_file_key" ON freight.file_upload_fields USING btree (setting_id, file_key);
|
||
|
||
CREATE UNIQUE INDEX "UQ_file_upload_settings_code" ON freight.file_upload_settings USING btree (code);
|
||
|
||
CREATE UNIQUE INDEX "UQ_last_mile_vehicle_container" ON freight.last_mile_vehicle_containers USING btree (last_mile_id, container_number) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_locomotives_name_active" ON freight.locomotives USING btree (lower(btrim((name)::text))) WHERE ((deleted_at IS NULL) AND (name IS NOT NULL) AND (btrim((name)::text) <> ''::text));
|
||
|
||
CREATE UNIQUE INDEX "UQ_maintenance_intervals_vehicle_type_item" ON freight.maintenance_intervals USING btree (vehicle_id, maintenance_type, COALESCE(service_item, ''::character varying)) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_priority_rules_code" ON freight.priority_rules USING btree (code);
|
||
|
||
CREATE UNIQUE INDEX "UQ_rates_pattern" ON freight.rates USING btree (rate_type, COALESCE(container_type_id, '00000000-0000-0000-0000-000000000000'::uuid), COALESCE(cargo_type_id, '00000000-0000-0000-0000-000000000000'::uuid), COALESCE(trade_direction, ''::character varying), COALESCE(origin_yard_id, '00000000-0000-0000-0000-000000000000'::uuid), COALESCE(destination_yard_id, '00000000-0000-0000-0000-000000000000'::uuid), rate_unit) WHERE ((deleted_at IS NULL) AND ((status)::text <> 'SUPERSEDED'::text));
|
||
|
||
CREATE UNIQUE INDEX "UQ_shipping_lines_code" ON freight.shipping_lines USING btree (code);
|
||
|
||
CREATE UNIQUE INDEX "UQ_train_locomotives_train_loco" ON freight.train_locomotives USING btree (train_id, locomotive_id);
|
||
|
||
CREATE UNIQUE INDEX "UQ_train_set_locomotives_set_loco" ON freight.train_set_locomotives USING btree (train_set_id, locomotive_id);
|
||
|
||
CREATE UNIQUE INDEX "UQ_trains_export_train_number" ON freight.trains USING btree (export_train_number) WHERE (export_train_number IS NOT NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_trains_import_train_number" ON freight.trains USING btree (import_train_number) WHERE (import_train_number IS NOT NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_trains_train_number" ON freight.trains USING btree (train_number) WHERE (train_number IS NOT NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_wagons_wagon_number_active" ON freight.wagons USING btree (wagon_number) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_weight_limit_rules_pattern" ON freight.weight_limit_rules USING btree (container_type_id, trade_direction) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_yard_facility_yard" ON freight.yard_facilities USING btree (yard_id) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_yards_code" ON freight.yards USING btree (code);
|
||
|
||
CREATE UNIQUE INDEX "UQ_yards_code_active" ON freight.yards USING btree (lower(TRIM(BOTH FROM code))) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX "UQ_yards_label_active" ON freight.yards USING btree (lower(TRIM(BOTH FROM label))) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX idx_asset_acquisitions_vehicle_date ON freight.asset_acquisitions USING btree (vehicle_id, acquisition_date);
|
||
|
||
CREATE INDEX idx_asset_disposals_vehicle_date ON freight.asset_disposals USING btree (vehicle_id, disposal_date);
|
||
|
||
CREATE INDEX idx_booking_batch_offers_booking ON freight.booking_batch_offers USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_booking_batch_offers_schedule ON freight.booking_batch_offers USING btree (train_schedule_id);
|
||
|
||
CREATE INDEX idx_booking_batch_offers_status ON freight.booking_batch_offers USING btree (status);
|
||
|
||
CREATE INDEX idx_booking_contract_signatures_booking_id ON freight.booking_contract_signatures USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_booking_document_review_booking ON freight.booking_document_review USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_booking_document_review_status ON freight.booking_document_review USING btree (status);
|
||
|
||
CREATE INDEX idx_booking_requests_contract ON freight.booking_requests USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_booking_requests_contract_status ON freight.booking_requests USING btree (contract_id, status);
|
||
|
||
CREATE INDEX idx_booking_requests_status ON freight.booking_requests USING btree (status);
|
||
|
||
CREATE INDEX idx_booking_review_note_booking_id ON freight.booking_review_note USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_bookings_booking_type ON freight.bookings USING btree (booking_type);
|
||
|
||
CREATE INDEX idx_bookings_company_id ON freight.bookings USING btree (company_id);
|
||
|
||
CREATE INDEX idx_bookings_company_profile_id ON freight.bookings USING btree (company_profile_id);
|
||
|
||
CREATE INDEX idx_bookings_contract ON freight.bookings USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_bookings_is_government ON freight.bookings USING btree (is_government) WHERE ((is_government = true) AND (deleted_at IS NULL));
|
||
|
||
CREATE INDEX idx_bookings_route_day ON freight.bookings USING btree (origin_yard_id, destination_yard_id, scheduled_date, status) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX idx_bookings_scheduling_status ON freight.bookings USING btree (scheduling_status);
|
||
|
||
CREATE INDEX idx_bookings_train_schedule_id ON freight.bookings USING btree (train_schedule_id) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX idx_clearance_incidents_booking ON freight.clearance_incidents USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_clearance_milestones_booking ON freight.clearance_milestones USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_clearance_milestones_contract ON freight.clearance_milestones USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_clearance_milestones_region ON freight.clearance_milestones USING btree (owner_region, status);
|
||
|
||
CREATE INDEX idx_company_change_request_company ON freight.company_change_request USING btree (company_id);
|
||
|
||
CREATE INDEX idx_company_change_request_status ON freight.company_change_request USING btree (status);
|
||
|
||
CREATE INDEX idx_company_revisions_company ON freight.company_revisions USING btree (company_id);
|
||
|
||
CREATE INDEX idx_compliance_records_expiry_date ON freight.compliance_records USING btree (expiry_date);
|
||
|
||
CREATE INDEX idx_compliance_records_type ON freight.compliance_records USING btree (type);
|
||
|
||
CREATE INDEX idx_compliance_records_vehicle_id ON freight.compliance_records USING btree (vehicle_id);
|
||
|
||
CREATE INDEX idx_contract_approval_steps_contract ON freight.contract_approval_steps USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_cargo_scope_contract ON freight.contract_cargo_scope USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_clearance_cycles_contract ON freight.contract_clearance_cycles USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_doc_review_contract ON freight.contract_document_review USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_doc_review_status ON freight.contract_document_review USING btree (status);
|
||
|
||
CREATE INDEX idx_contract_document_revisions_contract ON freight.contract_document_revisions USING btree (contract_id, created_at DESC);
|
||
|
||
CREATE INDEX idx_contract_rate_snapshots_contract ON freight.contract_rate_snapshots USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_review_notes_contract ON freight.contract_review_notes USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_routes_contract ON freight.contract_routes USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contract_signatures_contract ON freight.contract_signatures USING btree (contract_id);
|
||
|
||
CREATE INDEX idx_contracts_company ON freight.contracts USING btree (company_id);
|
||
|
||
CREATE INDEX idx_contracts_kind ON freight.contracts USING btree (contract_kind);
|
||
|
||
CREATE INDEX idx_contracts_status ON freight.contracts USING btree (status);
|
||
|
||
CREATE INDEX idx_contracts_valid_until ON freight.contracts USING btree (contract_valid_until);
|
||
|
||
CREATE INDEX idx_djibouti_incidents_booking ON freight.djibouti_import_incidents USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_djibouti_incidents_container ON freight.djibouti_import_incidents USING btree (container_number);
|
||
|
||
CREATE INDEX idx_djibouti_incidents_type ON freight.djibouti_import_incidents USING btree (incident_type);
|
||
|
||
CREATE INDEX idx_drivers_email ON freight.drivers USING btree (email);
|
||
|
||
CREATE INDEX idx_drivers_license_number ON freight.drivers USING btree (license_number);
|
||
|
||
CREATE INDEX idx_drivers_phone_number ON freight.drivers USING btree (phone_number);
|
||
|
||
CREATE INDEX idx_drivers_status ON freight.drivers USING btree (status);
|
||
|
||
CREATE INDEX idx_empty_returns_booking ON freight.empty_container_returns USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_empty_returns_container ON freight.empty_container_returns USING btree (container_number);
|
||
|
||
CREATE INDEX idx_empty_returns_status ON freight.empty_container_returns USING btree (status);
|
||
|
||
CREATE UNIQUE INDEX idx_facilities_code ON freight.facilities USING btree (code);
|
||
|
||
CREATE INDEX idx_facilities_status ON freight.facilities USING btree (facility_status);
|
||
|
||
CREATE INDEX idx_files_resource_lookup ON freight.files USING btree (resource, resource_id);
|
||
|
||
CREATE INDEX idx_fuel_consumption_vehicle_month ON freight.fuel_consumption USING btree (vehicle_id, month);
|
||
|
||
CREATE INDEX idx_fuel_purchases_date ON freight.fuel_purchases USING btree (purchase_date);
|
||
|
||
CREATE INDEX idx_fuel_purchases_vehicle ON freight.fuel_purchases USING btree (vehicle_id);
|
||
|
||
CREATE INDEX idx_import_customs_booking ON freight.import_customs_finalizations USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_import_customs_risk ON freight.import_customs_finalizations USING btree (customs_risk);
|
||
|
||
CREATE INDEX idx_import_djibouti_operations_schedule ON freight.import_djibouti_operations USING btree (train_schedule_id);
|
||
|
||
CREATE INDEX idx_interchange_documents_direction ON freight.interchange_documents USING btree (direction);
|
||
|
||
CREATE INDEX idx_interchange_documents_schedule ON freight.interchange_documents USING btree (schedule_id);
|
||
|
||
CREATE INDEX idx_interchange_documents_status ON freight.interchange_documents USING btree (status);
|
||
|
||
CREATE INDEX idx_interchange_items_booking ON freight.interchange_document_items USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_interchange_items_document ON freight.interchange_document_items USING btree (interchange_document_id);
|
||
|
||
CREATE INDEX idx_invoice_lines_invoice ON freight.invoice_lines USING btree (invoice_id);
|
||
|
||
CREATE INDEX idx_invoices_company ON freight.invoices USING btree (company_id);
|
||
|
||
CREATE INDEX idx_invoices_company_profile ON freight.invoices USING btree (company_profile_id);
|
||
|
||
CREATE INDEX idx_invoices_source ON freight.invoices USING btree (source, source_id);
|
||
|
||
CREATE INDEX idx_invoices_status ON freight.invoices USING btree (status);
|
||
|
||
CREATE INDEX idx_locomotives_status ON freight.locomotives USING btree (status);
|
||
|
||
CREATE INDEX idx_maintenance_costs_vehicle_date ON freight.maintenance_costs USING btree (vehicle_id, incurred_date);
|
||
|
||
CREATE INDEX idx_maintenance_schedules_vehicle_date ON freight.maintenance_schedules USING btree (vehicle_id, scheduled_date);
|
||
|
||
CREATE INDEX idx_payment_webhook_events_merchant_order_id ON freight.payment_webhook_events USING btree (merchant_order_id);
|
||
|
||
CREATE INDEX idx_prcr_status ON freight.priority_rule_change_requests USING btree (status);
|
||
|
||
CREATE INDEX idx_priority_configs_currency_type ON freight.priority_configs USING btree (currency, type);
|
||
|
||
CREATE INDEX idx_priority_configs_type_active ON freight.priority_configs USING btree (type, is_active);
|
||
|
||
CREATE INDEX idx_rcr_status ON freight.rate_change_requests USING btree (status);
|
||
|
||
CREATE INDEX idx_route_milestones_route_id ON freight.route_milestones USING btree (route_id);
|
||
|
||
CREATE INDEX idx_route_milestones_yard_id ON freight.route_milestones USING btree (yard_id);
|
||
|
||
CREATE INDEX idx_routes_destination_yard_id ON freight.routes USING btree (destination_yard_id);
|
||
|
||
CREATE INDEX idx_routes_origin_yard_id ON freight.routes USING btree (origin_yard_id);
|
||
|
||
CREATE INDEX idx_scheduling_events_train_schedule_id ON freight.scheduling_events USING btree (train_schedule_id) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX idx_train_checkpoint_events_schedule ON freight.train_checkpoint_events USING btree (train_schedule_id, sequence_no) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX idx_train_schedules_booking_window_status ON freight.train_schedules USING btree (booking_window_status) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE INDEX idx_train_schedules_departure_status ON freight.train_schedules USING btree (scheduled_departure_date, status);
|
||
|
||
CREATE INDEX idx_train_schedules_route_id ON freight.train_schedules USING btree (route_id);
|
||
|
||
CREATE INDEX idx_train_schedules_train_number ON freight.train_schedules USING btree (train_number);
|
||
|
||
CREATE INDEX idx_train_schedules_window_phase ON freight.train_schedules USING btree (window_phase) WHERE (window_phase IS NOT NULL);
|
||
|
||
CREATE INDEX idx_train_set_wagons_physical_wagon ON freight.train_set_wagons USING btree (physical_wagon_id);
|
||
|
||
CREATE INDEX idx_train_sets_status ON freight.train_sets USING btree (status);
|
||
|
||
CREATE INDEX idx_user_trade_access_user_id ON freight.user_trade_access USING btree (user_id);
|
||
|
||
CREATE INDEX idx_vehicles_manufacturer ON freight.vehicles USING btree (manufacturer);
|
||
|
||
CREATE INDEX idx_vehicles_plate_number ON freight.vehicles USING btree (plate_number);
|
||
|
||
CREATE INDEX idx_vehicles_registration_number ON freight.vehicles USING btree (registration_number);
|
||
|
||
CREATE INDEX idx_vehicles_status ON freight.vehicles USING btree (status);
|
||
|
||
CREATE INDEX idx_vehicles_vehicle_type ON freight.vehicles USING btree (vehicle_type);
|
||
|
||
CREATE INDEX idx_wabl_booking ON freight.wagon_allocation_bulk_loads USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_waci_allocation ON freight.wagon_allocation_container_items USING btree (wagon_booking_allocation_id);
|
||
|
||
CREATE INDEX idx_wagon_booking_allocations_booking ON freight.wagon_booking_allocations USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_wagons_current_train_schedule_id ON freight.wagons USING btree (current_train_schedule_id);
|
||
|
||
CREATE INDEX idx_wagons_train_set_wagon_id ON freight.wagons USING btree (train_set_wagon_id);
|
||
|
||
CREATE INDEX idx_war_active ON freight.warehouse_allocation_rules USING btree (is_active);
|
||
|
||
CREATE INDEX idx_war_priority ON freight.warehouse_allocation_rules USING btree (priority);
|
||
|
||
CREATE INDEX idx_warehouse_activity_log_activity_type ON freight.warehouse_activity_log USING btree (activity_type);
|
||
|
||
CREATE INDEX idx_warehouse_activity_log_inventory_id ON freight.warehouse_activity_log USING btree (inventory_id);
|
||
|
||
CREATE INDEX idx_warehouse_activity_log_warehouse_id ON freight.warehouse_activity_log USING btree (warehouse_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_booking_id ON freight.warehouse_inventory USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_cargo_id ON freight.warehouse_inventory USING btree (cargo_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_container_id ON freight.warehouse_inventory USING btree (container_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_goods_id ON freight.warehouse_inventory USING btree (goods_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_grn_number ON freight.warehouse_inventory USING btree (grn_number) WHERE (grn_number IS NOT NULL);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_inspection_status ON freight.warehouse_inventory USING btree (inspection_status);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_movement_inventory_id ON freight.warehouse_inventory_movement USING btree (inventory_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_status ON freight.warehouse_inventory USING btree (status);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_warehouse_id ON freight.warehouse_inventory USING btree (warehouse_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_yard_id ON freight.warehouse_inventory USING btree (yard_id);
|
||
|
||
CREATE INDEX idx_warehouse_inventory_zone_id ON freight.warehouse_inventory USING btree (zone_id);
|
||
|
||
CREATE INDEX idx_warehouse_loadings_booking_id ON freight.warehouse_loadings USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_warehouse_loadings_inventory_id ON freight.warehouse_loadings USING btree (warehouse_inventory_id);
|
||
|
||
CREATE INDEX idx_warehouse_loadings_train_schedule ON freight.warehouse_loadings USING btree (train_schedule_id) WHERE (train_schedule_id IS NOT NULL);
|
||
|
||
CREATE INDEX idx_warehouse_loadings_wagon_id ON freight.warehouse_loadings USING btree (wagon_id);
|
||
|
||
CREATE INDEX idx_warehouse_yards_status ON freight.warehouse_yards USING btree (status);
|
||
|
||
CREATE INDEX idx_warehouse_yards_type ON freight.warehouse_yards USING btree (type);
|
||
|
||
CREATE INDEX idx_warehouse_yards_warehouse_id ON freight.warehouse_yards USING btree (warehouse_id);
|
||
|
||
CREATE INDEX idx_warehouse_zones_status ON freight.warehouse_zones USING btree (status);
|
||
|
||
CREATE INDEX idx_warehouse_zones_type ON freight.warehouse_zones USING btree (type);
|
||
|
||
CREATE INDEX idx_warehouse_zones_yard_id ON freight.warehouse_zones USING btree (yard_id);
|
||
|
||
CREATE INDEX idx_warehouses_station_id ON freight.warehouses USING btree (station_id);
|
||
|
||
CREATE INDEX idx_warehouses_status ON freight.warehouses USING btree (status);
|
||
|
||
CREATE INDEX idx_warehouses_type ON freight.warehouses USING btree (type);
|
||
|
||
CREATE INDEX idx_wfr_active ON freight.warehouse_fee_rules USING btree (is_active);
|
||
|
||
CREATE INDEX idx_wfr_type ON freight.warehouse_fee_rules USING btree (rule_type);
|
||
|
||
CREATE INDEX idx_wir_booking ON freight.warehouse_inspection_reports USING btree (booking_id);
|
||
|
||
CREATE INDEX idx_wir_inventory ON freight.warehouse_inspection_reports USING btree (inventory_id);
|
||
|
||
CREATE INDEX idx_wir_status ON freight.warehouse_inspection_reports USING btree (inspection_status);
|
||
|
||
CREATE INDEX idx_wm_moved_by ON freight.wagon_movements USING btree (moved_by_user_id);
|
||
|
||
CREATE INDEX idx_wm_transfer_request ON freight.wagon_movements USING btree (transfer_request_id);
|
||
|
||
CREATE INDEX idx_wtr_status_from_yard ON freight.wagon_transfer_requests USING btree (status, from_yard_id);
|
||
|
||
CREATE INDEX idx_yard_distances_from_yard ON freight.yard_distances USING btree (from_yard_id);
|
||
|
||
CREATE INDEX idx_yard_distances_to_yard ON freight.yard_distances USING btree (to_yard_id);
|
||
|
||
CREATE INDEX ix_transit_agents_is_active ON freight.transit_agents USING btree (is_active);
|
||
|
||
CREATE INDEX ix_truck_types_is_active ON freight.truck_types USING btree (is_active);
|
||
|
||
CREATE UNIQUE INDEX uq_booking_document_review_doc ON freight.booking_document_review USING btree (booking_id, setting_code, file_key);
|
||
|
||
CREATE UNIQUE INDEX uq_clearance_milestone_booking ON freight.clearance_milestones USING btree (booking_id, milestone_code) WHERE (booking_id IS NOT NULL);
|
||
|
||
CREATE UNIQUE INDEX uq_clearance_milestone_cycle ON freight.clearance_milestones USING btree (clearance_cycle_id, milestone_code) WHERE (clearance_cycle_id IS NOT NULL);
|
||
|
||
CREATE UNIQUE INDEX uq_interchange_active_schedule_direction ON freight.interchange_documents USING btree (schedule_id, direction) WHERE ((schedule_id IS NOT NULL) AND ((status)::text <> 'CANCELLED'::text) AND (deleted_at IS NULL));
|
||
|
||
CREATE UNIQUE INDEX uq_one_active_booking_per_one_time_contract ON freight.bookings USING btree (contract_id) WHERE (((status)::text <> ALL ((ARRAY['EXPIRED'::character varying, 'CANCELLED'::character varying, 'COMPLETED'::character varying, 'REJECTED'::character varying])::text[])) AND (contract_id IS NOT NULL) AND ((contract_kind)::text = 'ONE_TIME'::text));
|
||
|
||
CREATE UNIQUE INDEX uq_rcr_one_pending_per_rate ON freight.rate_change_requests USING btree (rate_id) WHERE (((status)::text = 'PENDING'::text) AND (deleted_at IS NULL));
|
||
|
||
CREATE UNIQUE INDEX uq_yard_distances_pair ON freight.yard_distances USING btree (from_yard_id, to_yard_id) WHERE (deleted_at IS NULL);
|
||
|
||
CREATE UNIQUE INDEX ux_train_schedules_reference ON freight.train_schedules USING btree (reference) WHERE (reference IS NOT NULL);
|
||
|
||
CREATE UNIQUE INDEX ux_truck_types_code ON freight.truck_types USING btree (code);
|
||
|
||
CREATE UNIQUE INDEX ux_vehicles_vin ON freight.vehicles USING btree (vin) WHERE (vin IS NOT NULL);
|
||
`;
|
||
|
||
/**
|
||
* Reference/seed rows, keyed by table. Exported so a targeted re-seed (see
|
||
* `scripts/seed-edr-wagons.ts`) can replay a single table without the rest.
|
||
* Insertion order is irrelevant — the FK constraints below are added afterwards.
|
||
*/
|
||
export const FREIGHT_SEED_SQL: Record<string, string> = {
|
||
approval_rules: `
|
||
INSERT INTO freight.approval_rules (id, requires_director_approval, step_order, required_role, action_label, blocks_role, created_at, updated_at, deleted_at) VALUES ('dd31712c-25ef-4ca1-a4d2-435e219fcd7e', false, 1, 'LINE_STAFF', 'Review & Approve', NULL, '2026-08-05 07:31:05.116257+00', '2026-08-05 07:31:05.116257+00', NULL);
|
||
INSERT INTO freight.approval_rules (id, requires_director_approval, step_order, required_role, action_label, blocks_role, created_at, updated_at, deleted_at) VALUES ('3e1d0f06-65cb-467e-bf16-a43d47e546bd', false, 2, 'DIRECTOR', 'Final Signature', 'LINE_STAFF', '2026-08-05 07:31:05.116257+00', '2026-08-05 07:31:05.116257+00', NULL);
|
||
INSERT INTO freight.approval_rules (id, requires_director_approval, step_order, required_role, action_label, blocks_role, created_at, updated_at, deleted_at) VALUES ('8f818e32-4c51-4e74-859b-9268e39e320c', true, 1, 'DIRECTOR', 'Review & Approve', 'LINE_STAFF', '2026-08-05 07:31:05.116257+00', '2026-08-05 07:31:05.116257+00', NULL);
|
||
INSERT INTO freight.approval_rules (id, requires_director_approval, step_order, required_role, action_label, blocks_role, created_at, updated_at, deleted_at) VALUES ('8c55dcfd-607a-4f86-be71-f3b81c4bc044', true, 2, 'CEO', 'Final Signature', NULL, '2026-08-05 07:31:05.116257+00', '2026-08-05 07:31:05.116257+00', NULL);
|
||
`,
|
||
cargo_types: `
|
||
INSERT INTO freight.cargo_types (id, cargo_type_name, parent_group_id, requires_director_approval, is_active, display_order, created_at, updated_at, deleted_at, code, unit_of_measure, has_lashing, items_per_wagon_map, tons_per_wagon_map) VALUES ('8ed5e27a-44e8-4448-ba73-b435788b0a51', 'General Cargo', NULL, false, true, 1, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, 'GENERAL', NULL, false, NULL, NULL);
|
||
INSERT INTO freight.cargo_types (id, cargo_type_name, parent_group_id, requires_director_approval, is_active, display_order, created_at, updated_at, deleted_at, code, unit_of_measure, has_lashing, items_per_wagon_map, tons_per_wagon_map) VALUES ('d529f2c1-b7b4-406c-9d40-16bfdffdd26c', 'Fertilizer', NULL, false, true, 1, '2026-08-05 07:31:09.200884+00', '2026-08-05 07:31:09.200884+00', NULL, 'FERTILIZER', 'PER_TON', false, NULL, NULL);
|
||
INSERT INTO freight.cargo_types (id, cargo_type_name, parent_group_id, requires_director_approval, is_active, display_order, created_at, updated_at, deleted_at, code, unit_of_measure, has_lashing, items_per_wagon_map, tons_per_wagon_map) VALUES ('ca196126-7b3b-4879-ab40-5ee7953d9ec5', 'Coffee', NULL, false, true, 1, '2026-08-05 07:31:09.200884+00', '2026-08-05 07:31:09.200884+00', NULL, 'COFFEE', 'PER_TON', false, NULL, NULL);
|
||
INSERT INTO freight.cargo_types (id, cargo_type_name, parent_group_id, requires_director_approval, is_active, display_order, created_at, updated_at, deleted_at, code, unit_of_measure, has_lashing, items_per_wagon_map, tons_per_wagon_map) VALUES ('9edeb30b-bca0-49bf-abe5-4ed26e6b9353', 'Tea', NULL, false, true, 1, '2026-08-05 07:31:09.200884+00', '2026-08-05 07:31:09.200884+00', NULL, 'TEA', 'PER_TON', false, NULL, NULL);
|
||
`,
|
||
companies: `
|
||
INSERT INTO freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone, nationality, licence_number, status_description, date_registered, renewed_from, renewal_date, renewed_to, region, zone, woreda, kebele, house_no, etrade_phone, kind, approved_at) VALUES ('0a1b0001-0000-4000-8000-000000000001', 'Federal Government of Ethiopia', 'customer', 'active', '0000000001', NULL, NULL, 'Ethiopia', NULL, '+251111000001', 'procurement@gov.et', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'government', NULL);
|
||
INSERT INTO freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone, nationality, licence_number, status_description, date_registered, renewed_from, renewal_date, renewed_to, region, zone, woreda, kebele, house_no, etrade_phone, kind, approved_at) VALUES ('0a1b0002-0000-4000-8000-000000000002', 'Ministry of National Defense', 'customer', 'active', '0000000002', NULL, NULL, 'Ethiopia', NULL, '+251111000002', 'logistics@mod.gov.et', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'government', NULL);
|
||
INSERT INTO freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone, nationality, licence_number, status_description, date_registered, renewed_from, renewal_date, renewed_to, region, zone, woreda, kebele, house_no, etrade_phone, kind, approved_at) VALUES ('0a1b0003-0000-4000-8000-000000000003', 'Ethiopian Roads Administration', 'customer', 'active', '0000000003', NULL, NULL, 'Ethiopia', NULL, '+251111000003', 'supply@era.gov.et', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'government', NULL);
|
||
INSERT INTO freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone, nationality, licence_number, status_description, date_registered, renewed_from, renewal_date, renewed_to, region, zone, woreda, kebele, house_no, etrade_phone, kind, approved_at) VALUES ('0a1b0004-0000-4000-8000-000000000004', 'Ministry of Agriculture', 'customer', 'active', '0000000004', NULL, NULL, 'Ethiopia', NULL, '+251111000004', 'imports@moa.gov.et', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'government', NULL);
|
||
INSERT INTO freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone, nationality, licence_number, status_description, date_registered, renewed_from, renewal_date, renewed_to, region, zone, woreda, kebele, house_no, etrade_phone, kind, approved_at) VALUES ('0a1b0005-0000-4000-8000-000000000005', 'Ministry of Trade and Regional Integration', 'customer', 'active', '0000000005', NULL, NULL, 'Ethiopia', NULL, '+251111000005', 'trade@motri.gov.et', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'government', NULL);
|
||
INSERT INTO freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone, nationality, licence_number, status_description, date_registered, renewed_from, renewal_date, renewed_to, region, zone, woreda, kebele, house_no, etrade_phone, kind, approved_at) VALUES ('0a1b0006-0000-4000-8000-000000000006', 'Ethiopian Disaster Risk Management Commission', 'customer', 'active', '0000000006', NULL, NULL, 'Ethiopia', NULL, '+251111000006', 'relief@edrmc.gov.et', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'government', NULL);
|
||
`,
|
||
company_profiles: `
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0001-0000-4000-8000-000000000001', '0a1b0001-0000-4000-8000-000000000001', 'importer', 'IM-90001', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0001-0000-4000-8000-000000000002', '0a1b0001-0000-4000-8000-000000000001', 'exporter', 'EX-90001', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0002-0000-4000-8000-000000000001', '0a1b0002-0000-4000-8000-000000000002', 'importer', 'IM-90002', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0002-0000-4000-8000-000000000002', '0a1b0002-0000-4000-8000-000000000002', 'exporter', 'EX-90002', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0003-0000-4000-8000-000000000001', '0a1b0003-0000-4000-8000-000000000003', 'importer', 'IM-90003', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0003-0000-4000-8000-000000000002', '0a1b0003-0000-4000-8000-000000000003', 'exporter', 'EX-90003', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0004-0000-4000-8000-000000000001', '0a1b0004-0000-4000-8000-000000000004', 'importer', 'IM-90004', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0004-0000-4000-8000-000000000002', '0a1b0004-0000-4000-8000-000000000004', 'exporter', 'EX-90004', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0005-0000-4000-8000-000000000001', '0a1b0005-0000-4000-8000-000000000005', 'importer', 'IM-90005', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0005-0000-4000-8000-000000000002', '0a1b0005-0000-4000-8000-000000000005', 'exporter', 'EX-90005', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0006-0000-4000-8000-000000000001', '0a1b0006-0000-4000-8000-000000000006', 'importer', 'IM-90006', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
INSERT INTO freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at, business_license_files, review_note, reviewed_by, reviewed_at) VALUES ('0b1c0006-0000-4000-8000-000000000002', '0a1b0006-0000-4000-8000-000000000006', 'exporter', 'EX-90006', 'active', NULL, NULL, '2026-08-05 07:31:07.431166+00', '2026-08-05 07:31:07.431166+00', NULL, NULL, NULL, NULL, NULL);
|
||
`,
|
||
contract_templates: `
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('6bc99976-d5f7-4b4d-82a0-f0340f3e7cf7', 'IMPORT_BULK_CUSTOMS', 'Bulk Import Contract (with customs clearing)', 'Import of bulk cargo (e.g. steel billets) from Djibouti (DMP/Nagad) to Galaan Multipurpose Port with customs clearance and optional last-mile delivery. Customs clearing is performed by the Service Provider.', 'Bulk Cargo Transportation and Customs Clearance Services', '["The Client has agreed to engage the Service Provider for transportation and customs clearance services for bulk cargo, including first-mile transport to the railway station at Djibouti, loading at either DMP or Nagad Railway Station (Djibouti), port/rail terminal handling, loading onto the train, railway transport to Galaan Multipurpose Port (GMP) in Ethiopia, unloading at the destination port from train to load directly on truck, onward transportation to the Client''s site (excluding truck loading at Djibouti and truck unloading at the Client destination where last-mile service is undertaken by the Service Provider), and all related documentation.", "The Service Provider has agreed to provide the requested services in accordance with the terms and conditions of this Agreement."]', '[{"id": "objective", "body": "The objective of this contract is to provide the Client with integrated logistics services for the transportation of bulk cargo, including:\\n- First-mile transportation in Djibouti from the Client''s designated cargo location to the selected railway station (DMP or Nagad).\\n- Port handling and loading onto railway wagons.\\n- Railway transport from DMP and/or Nagad Railway freight station (Djibouti) to Galaan Multipurpose Port.\\n- Customs clearance in Djibouti and Ethiopia.\\n- Unloading from train at the destination port to load directly on truck.\\n- Last-mile delivery by truck to the Client''s delivery site where the last-mile service is undertaken by the Service Provider.\\nThe truck loading at Djibouti and the truck unloading at the Client''s delivery site shall be the responsibility of the Client.", "order": 1, "title": "Objective of the Services"}, {"id": "client-obligations", "body": "Provide written/email/electronic instructions specifying the cargo volume and the selected loading station (DMP or Nagad) for each shipment.\\nPrepare and submit all necessary documents and permits to enable smooth service execution.\\nEnsure cargo readiness in compliance with specifications (including weight, size, and contour restrictions).\\nHandle truck loading at Djibouti Free Zone/Old Port/DMP and any other designated cargo location at Djibouti, and truck unloading at the delivery site.\\nEnsure safety and proper securing of cargo during truck handling.\\nSubmit all required documents necessary for customs clearance and cargo release within one (1) calendar day from the date of request or notification by the Service Provider.\\nUpon receipt of the wagon allocation list and train schedule from the Service Provider, ensure that the cargo is transferred to the designated loading freight station and made ready for loading within two (2) days prior to wagon arrival. Any delay beyond this period resulting from Client-related issues shall be subject to a charge of USD 56 per wagon per day, or part thereof, until the cargo is made available for loading.\\nUpon arrival of the train at Galaan Multipurpose Port (GMP), offload cargo from wagons within twenty-four (24) hours of train arrival. Where the Client undertakes last-mile transportation, the Client may arrange sufficient trucks at the time of train arrival to enable direct loading of cargo from wagons to trucks.\\nIn the event the Client is unable to provide trucks for the collection of cargo within twenty-four (24) hours of train arrival, the Service Provider shall have the right to handle and reposition the cargo to any location it deems appropriate, and shall not be held responsible for any loss, shortage, or damage arising from such repositioning.\\nAny additional handling, re-handling, or repeated loading operations performed by the Service Provider shall be charged as double handling fees at a rate of USD 4 per ton, payable by the Client.\\nIf stored, the full cargo must be collected from the Galaan Multipurpose Port compound within three (3) days from the time of train arrival at the port.\\nIf the Client fails to collect the cargo within the specified period, the Client shall be liable to pay demurrage charges of USD 2 per day per ton, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nWhere the last-mile service is provided by the Service Provider, unload the cargo from the truck at the delivery site within the agreed time frame.\\nDesignate authorized representatives (with valid power of attorney) for handover at origin and destination.\\nSettle demurrage payments within ten (10) calendar days from the date the Service Provider issues a claim.\\nPay the Service Provider one hundred percent (100%) of the contract price in advance for each train set in accordance with the pricing article of this Agreement.\\nContact the Service Provider to obtain confirmation prior to booking and proceeding with payment.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Provide first-mile transportation in Djibouti from the Client''s designated location to the selected railway station (DMP or Nagad).\\nCarry out port handling and loading onto railway wagons.\\nProvide railway transportation from DMP/Nagad (Djibouti) railway freight station to Galaan Multipurpose Port.\\nPerform unloading at Galaan Multipurpose Port (GMP) to load directly on truck.\\nPerform customs clearance in Djibouti and Ethiopia, including border station procedures.\\nPrepare and submit all required transport documentation.\\nProvide cargo insurance coverage for each supplied wagon.\\nNotify the Client of train schedules, wagon numbers, and expected arrival times in advance.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "liability", "body": "The Service Provider shall be fully responsible for any loss, shortage, or damage to cargo that occurs after it has been taken over until delivery to the Client''s delivery site.\\nCompensation shall be based on the market value of the cargo, in accordance with applicable laws.", "order": 5, "title": "Liabilities Related to Damages and Losses"}, {"id": "pricing", "body": "The applicable railway freight, Djibouti handling, and any additional service and surcharge rates for this contract are set out in the Rate Schedule immediately below, expressed as unit prices per origin → destination lane and per service.\\nEach wagon shall be loaded up to a maximum of seventy (70) metric tons; for billing purposes one full wagon shall be deemed equivalent to this volume.\\nWhere lashing materials and wood are provided by the Service Provider, they shall be charged at the applicable rate set out in the Rate Schedule; the provision continues until the cargo reaches and is fully unloaded at the designated destination station.\\nThe price for last-mile delivery, where not listed in the Rate Schedule, shall be determined once the cargo departs from the loading point and shall be communicated to the Client by official email upon the Client''s request.\\nPayments shall be made 100% in advance in USD.", "order": 6, "title": "Contract Price and Payment Terms"}, {"id": "contract-documents", "body": "The following documents form part of this contract:\\n- This Contract Agreement.\\n- Any amendments made to this Agreement.\\n- Minutes of negotiation (if any).", "order": 7, "title": "Contract Documents"}, {"id": "documentation", "body": "The Service Provider shall deliver the following to the Client:\\n- Freight Carriage Acceptance Sheet of the Addis Ababa–Djibouti Railway.\\n- Notice of transportation and miscellaneous charges.\\n- Summary of payment request as per the agreed tariff, if required.", "order": 8, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider shall certify the taking over of goods in the Freight Carriage Acceptance Sheet.\\nThis document shall serve as prima facie evidence of receipt of the cargo.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 9, "title": "Consignment Notes"}, {"id": "termination", "body": "This contract may be terminated:\\n- By mutual consent.\\n- Upon completion of the agreed contract period or cargo volume.\\n- For breach of fundamental provisions, with one-week prior written notice.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "This Agreement becomes effective on the date it is signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "The contract is valid until August 31, {{contractYear}} from the date of effectiveness, extendable by mutual agreement.", "order": 12, "title": "Duration"}, {"id": "disputes", "body": "Disputes shall first be settled amicably.\\nIf unresolved, disputes shall be referred to the competent Federal Court of Ethiopia in Addis Ababa.\\nThe governing law shall be the laws of the Federal Democratic Republic of Ethiopia.", "order": 13, "title": "Settlement of Disputes"}, {"id": "customs-clearing", "body": "The Service Provider shall carry out customs clearing on behalf of the Client for the cargo covered by this Agreement, including declaration, lodgement, and follow-up at the customs stations of Djibouti and Ethiopia as applicable to the agreed corridor.\\nThe Service Provider shall act only within the authority granted by the Client and shall not amend a declaration without the Client''s written instruction.\\nCustoms duties, taxes, and any government charges assessed on the cargo remain payable by the Client and are not included in the freight price; the Service Provider shall settle them on the Client''s behalf only where the Client has placed the corresponding funds in advance.\\nThe Service Provider shall hand over all customs documents obtained in the course of clearing to the Client upon completion of each shipment.", "order": 14, "title": "Customs Clearing Services"}, {"id": "customs-client-duties", "body": "Grant the Service Provider a duly signed and stamped power of attorney authorising it to act as the Client''s customs agent for the duration of this Agreement.\\nSubmit every document required for declaration (commercial invoice, packing list, bill of lading or airway bill, permits, certificates of origin, and any authority-specific licence) within one (1) calendar day of the Service Provider''s request.\\nWarrant that the declared description, quantity, value, and tariff classification of the cargo are complete and accurate.\\nBear any penalty, demurrage, storage, or re-inspection cost arising from incorrect, incomplete, or late Client-supplied information or documentation.\\nSettle assessed duties and taxes within the period notified by the Service Provider, failing which the Service Provider may suspend clearing and the cargo shall remain at the Client''s risk and cost.", "order": 15, "title": "Client Obligations for Customs Clearing"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('b4dcb3fb-43f9-47f1-a97d-a7af210f05eb', 'IMPORT_BULK_NO_CUSTOMS', 'Bulk Import Contract (without customs clearing)', 'Import of bulk cargo (e.g. steel billets) from Djibouti (DMP/Nagad) to Galaan Multipurpose Port with customs clearance and optional last-mile delivery. Customs clearing is handled by the Client.', 'Bulk Cargo Transportation and Customs Clearance Services', '["The Client has agreed to engage the Service Provider for transportation and customs clearance services for bulk cargo, including first-mile transport to the railway station at Djibouti, loading at either DMP or Nagad Railway Station (Djibouti), port/rail terminal handling, loading onto the train, railway transport to Galaan Multipurpose Port (GMP) in Ethiopia, unloading at the destination port from train to load directly on truck, onward transportation to the Client''s site (excluding truck loading at Djibouti and truck unloading at the Client destination where last-mile service is undertaken by the Service Provider), and all related documentation.", "The Service Provider has agreed to provide the requested services in accordance with the terms and conditions of this Agreement."]', '[{"id": "objective", "body": "The objective of this contract is to provide the Client with integrated logistics services for the transportation of bulk cargo, including:\\n- First-mile transportation in Djibouti from the Client''s designated cargo location to the selected railway station (DMP or Nagad).\\n- Port handling and loading onto railway wagons.\\n- Railway transport from DMP and/or Nagad Railway freight station (Djibouti) to Galaan Multipurpose Port.\\n- Customs clearance in Djibouti and Ethiopia.\\n- Unloading from train at the destination port to load directly on truck.\\n- Last-mile delivery by truck to the Client''s delivery site where the last-mile service is undertaken by the Service Provider.\\nThe truck loading at Djibouti and the truck unloading at the Client''s delivery site shall be the responsibility of the Client.", "order": 1, "title": "Objective of the Services"}, {"id": "client-obligations", "body": "Provide written/email/electronic instructions specifying the cargo volume and the selected loading station (DMP or Nagad) for each shipment.\\nPrepare and submit all necessary documents and permits to enable smooth service execution.\\nEnsure cargo readiness in compliance with specifications (including weight, size, and contour restrictions).\\nHandle truck loading at Djibouti Free Zone/Old Port/DMP and any other designated cargo location at Djibouti, and truck unloading at the delivery site.\\nEnsure safety and proper securing of cargo during truck handling.\\nSubmit all required documents necessary for customs clearance and cargo release within one (1) calendar day from the date of request or notification by the Service Provider.\\nUpon receipt of the wagon allocation list and train schedule from the Service Provider, ensure that the cargo is transferred to the designated loading freight station and made ready for loading within two (2) days prior to wagon arrival. Any delay beyond this period resulting from Client-related issues shall be subject to a charge of USD 56 per wagon per day, or part thereof, until the cargo is made available for loading.\\nUpon arrival of the train at Galaan Multipurpose Port (GMP), offload cargo from wagons within twenty-four (24) hours of train arrival. Where the Client undertakes last-mile transportation, the Client may arrange sufficient trucks at the time of train arrival to enable direct loading of cargo from wagons to trucks.\\nIn the event the Client is unable to provide trucks for the collection of cargo within twenty-four (24) hours of train arrival, the Service Provider shall have the right to handle and reposition the cargo to any location it deems appropriate, and shall not be held responsible for any loss, shortage, or damage arising from such repositioning.\\nAny additional handling, re-handling, or repeated loading operations performed by the Service Provider shall be charged as double handling fees at a rate of USD 4 per ton, payable by the Client.\\nIf stored, the full cargo must be collected from the Galaan Multipurpose Port compound within three (3) days from the time of train arrival at the port.\\nIf the Client fails to collect the cargo within the specified period, the Client shall be liable to pay demurrage charges of USD 2 per day per ton, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nWhere the last-mile service is provided by the Service Provider, unload the cargo from the truck at the delivery site within the agreed time frame.\\nDesignate authorized representatives (with valid power of attorney) for handover at origin and destination.\\nSettle demurrage payments within ten (10) calendar days from the date the Service Provider issues a claim.\\nPay the Service Provider one hundred percent (100%) of the contract price in advance for each train set in accordance with the pricing article of this Agreement.\\nContact the Service Provider to obtain confirmation prior to booking and proceeding with payment.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Provide first-mile transportation in Djibouti from the Client''s designated location to the selected railway station (DMP or Nagad).\\nCarry out port handling and loading onto railway wagons.\\nProvide railway transportation from DMP/Nagad (Djibouti) railway freight station to Galaan Multipurpose Port.\\nPerform unloading at Galaan Multipurpose Port (GMP) to load directly on truck.\\nPerform customs clearance in Djibouti and Ethiopia, including border station procedures.\\nPrepare and submit all required transport documentation.\\nProvide cargo insurance coverage for each supplied wagon.\\nNotify the Client of train schedules, wagon numbers, and expected arrival times in advance.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "liability", "body": "The Service Provider shall be fully responsible for any loss, shortage, or damage to cargo that occurs after it has been taken over until delivery to the Client''s delivery site.\\nCompensation shall be based on the market value of the cargo, in accordance with applicable laws.", "order": 5, "title": "Liabilities Related to Damages and Losses"}, {"id": "pricing", "body": "The applicable railway freight, Djibouti handling, and any additional service and surcharge rates for this contract are set out in the Rate Schedule immediately below, expressed as unit prices per origin → destination lane and per service.\\nEach wagon shall be loaded up to a maximum of seventy (70) metric tons; for billing purposes one full wagon shall be deemed equivalent to this volume.\\nWhere lashing materials and wood are provided by the Service Provider, they shall be charged at the applicable rate set out in the Rate Schedule; the provision continues until the cargo reaches and is fully unloaded at the designated destination station.\\nThe price for last-mile delivery, where not listed in the Rate Schedule, shall be determined once the cargo departs from the loading point and shall be communicated to the Client by official email upon the Client''s request.\\nPayments shall be made 100% in advance in USD.", "order": 6, "title": "Contract Price and Payment Terms"}, {"id": "contract-documents", "body": "The following documents form part of this contract:\\n- This Contract Agreement.\\n- Any amendments made to this Agreement.\\n- Minutes of negotiation (if any).", "order": 7, "title": "Contract Documents"}, {"id": "documentation", "body": "The Service Provider shall deliver the following to the Client:\\n- Freight Carriage Acceptance Sheet of the Addis Ababa–Djibouti Railway.\\n- Notice of transportation and miscellaneous charges.\\n- Summary of payment request as per the agreed tariff, if required.", "order": 8, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider shall certify the taking over of goods in the Freight Carriage Acceptance Sheet.\\nThis document shall serve as prima facie evidence of receipt of the cargo.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 9, "title": "Consignment Notes"}, {"id": "termination", "body": "This contract may be terminated:\\n- By mutual consent.\\n- Upon completion of the agreed contract period or cargo volume.\\n- For breach of fundamental provisions, with one-week prior written notice.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "This Agreement becomes effective on the date it is signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "The contract is valid until August 31, {{contractYear}} from the date of effectiveness, extendable by mutual agreement.", "order": 12, "title": "Duration"}, {"id": "disputes", "body": "Disputes shall first be settled amicably.\\nIf unresolved, disputes shall be referred to the competent Federal Court of Ethiopia in Addis Ababa.\\nThe governing law shall be the laws of the Federal Democratic Republic of Ethiopia.", "order": 13, "title": "Settlement of Disputes"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('23cc0059-6258-4f16-8c84-6670751cfbc6', 'EXPORT_BULK_CUSTOMS', 'Bulk Export Contract (with customs clearing)', 'Export of bulk cargo (e.g. livestock) by railway from Ethiopian loading stations to Nagad railway freight yard, Djibouti. Customs clearing is performed by the Service Provider.', 'Bulk Cargo Transportation Service by Railway', '["The Client has agreed to deliver bulk cargo to the Service Provider for transport from the agreed Ethiopian loading station to Nagad railway freight yard using the Addis Ababa–Djibouti railway line.", "The Service Provider has agreed to provide the service to transport the bulk cargo from the agreed loading station to Nagad railway freight yard."]', '[{"id": "objective", "body": "To undertake the railway transportation of bulk cargo from the agreed Ethiopian loading station to Nagad railway freight yard.", "order": 1, "title": "Objective of the Service"}, {"id": "client-obligations", "body": "Give written instruction to the Service Provider to transport a minimum of one wagon of cargo; the wagon request shall be made at least five (5) days in advance for each wagon.\\nMaintain detailed information incorporating type, weight, and destination of the cargo ready for shipment, and notify the Service Provider or its nominated agent by notice, email, or fax.\\nPrepare the necessary documents and facilities to make the cargo ready for transport.\\nNote the allowable transport period of the cargo: the maximum time range during which the goods maintain their condition without any problem. The allowable transport period must be at least two (2) days longer than the delivery period.\\nEnsure cargo is properly loaded and fastened in the wagons, provide the necessary lashing and barriers for loading as per the instruction of the departure station, and bear responsibility for the condition of the cargo during the transport period.\\nSupply the necessary provisions for the cargo for each wagon and assign a responsible person to travel with the train to check the status of the cargo during transport, where the nature of the cargo so requires.\\nSupply the minimum amount of cargo available for at least one wagon.\\nExecute loading, lashing, and preparing barriers on wagons at the loading station and provide the complete documents/bill to the Service Provider within one (1) calendar day.\\nFor each extra calendar day used for loading cargo and completing documents at the loading station, pay the wagon-occupied fee per the pricing article; the fee shall be paid within ten (10) calendar days from the date the Service Provider claims it, failing which compensation is payable calculated on the basis of the Commercial Bank of Ethiopia interest rate for the delay period.\\nBe responsible for safety matters, and indemnify and hold the Service Provider harmless against all consequences resulting from accidents arising from or associated with the loading and unloading process.\\nExecute and cover the cost of loading and unloading of cargo at both the loading station and Nagad railway freight yard.\\nFollow up that the cargo is loaded and unloaded on time.\\nDelegate representatives at both ends to consign and receive cargo with signature and stamp. Representatives shall hold a duly signed and stamped power of attorney and shall produce their ID or passport when consigning or receiving the cargo.\\nPrepare the necessary facilities to take over the transported cargo at Nagad freight yard upon arrival by issuing handover documents.\\nTake the transported cargo out of the wagons at Nagad freight yard within one (1) calendar day starting from the day following the notice of arrival.\\nPay the wagon-occupied fee per the pricing article for delays of more than one (1) calendar day at Nagad railway freight yard due to the fault of the Client in resolving customs or third-party claims or any other causes.\\nAfter the wagon list is submitted to the Client, if a wagon is not loaded due to the fault of the Client, pay 100% of the transportation price per wagon for each unloaded wagon.\\nPay the Service Provider 100% of the contract price in advance for each wagon.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Provide the list and identification numbers of wagons with sequence and locomotives at least twenty-four (24) hours in advance to the Client, with any correction at least twelve (12) hours before arrival at destination.\\nTransport the cargo from the loading station to Nagad railway freight yard.\\nProvide safe transportation of the cargo throughout the transit.\\nPresent customs clearance documents and mobilize the rolling stock as needed.\\nProvide the wagons assigned for the freight at the agreed place and time, and follow up that the cargo is loaded on time.\\nTransport and deliver the cargo taken over, in the condition received, within two (2) calendar days to Nagad railway freight yard.\\nWhere a wagon carrying cargo stops due to accident or mechanical problem, promptly notify the nearby customs station, police office, and the Client. A wagon stopped in Ethiopia due to mechanical defect shall be maintained within four (4) calendar days; within Nagad (Djibouti) territory within twelve (12) calendar days. In case of accident where the problem cannot be solved within one (1) calendar day and the wagon is not operational, the Service Provider shall have the cargo carried and delivered by another wagon, and shall provide an accident or defect report issued by the local police office regarding the sustained damage.\\nBuy a cargo liability insurance policy for each supplied wagon.\\nProvide wagon cleaning service and charge the cleaning fee based on actual expenditure.\\nIf the Client fails or refuses to receive the cargo beyond the allowable transport period, the Service Provider has the right to handle the cargo.\\nNeither party shall be liable for any indirect or consequential loss sustained by the other in connection with this Agreement.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "The parties have no obligation to pay demurrage or any other compensation if they have failed to discharge their obligations due to force majeure.\\nForce majeure shall be deemed to exist when the contract is not performed due to any event beyond the reasonable control of a party which prevents that party from complying with its obligations under this Agreement, including but not limited to:\\n- Acts of God (such as, but not limited to, fires, explosions, earthquakes, drought, tidal waves, and floods).\\n- War, hostilities (whether war is declared or not), invasion, acts of foreign enemies, mobilization, requisition, or embargo.\\n- Rebellion, revolution, insurrection, military or usurped power, or civil war.\\n- Contamination by radioactivity from any nuclear fuel or nuclear waste.\\n- Riot, commotion, strikes, go-slows, lockouts, or disorder.\\n- Acts of terrorism.\\nA party wishing to claim protection in respect of a force majeure event shall, as soon as possible following the occurrence or commencement of the event, notify the other party of its nature and expected duration, and shall thereafter keep the other party informed until it is able to perform its obligations under this Agreement.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The price of bulk cargo transportation from the loading station to Nagad, together with any applicable demurrage and surcharge rates, is set out in the Rate Schedule immediately below, expressed as unit prices per origin → destination lane and per wagon.\\nPayment for transport services shall be made in Birr based on the selling price of USD to Birr on the date of payment set by the Commercial Bank of Ethiopia.\\nIf there is an increment or decrement of the USD exchange rate to Birr between the date of payment and the date the wagon/train number is provided to the Client, either the Client shall make the additional payment to the Service Provider or the Service Provider shall refund the difference from the initial payment to the Client.\\nThe cost of loading at the loading station and unloading at Nagad shall be covered by the Client and is not part of this contract agreement.\\nThe Client shall pay 100% of the contract price in advance.\\nThe Client shall pay a demurrage fee for occupied wagons at the rate set out in the Rate Schedule for the applicable occupancy band.\\nDemurrage payment shall be made in Birr based on the selling price of USD to Birr set by the Commercial Bank of Ethiopia on the date of the demurrage occurrence.", "order": 5, "title": "Contract Price and Terms of Payment"}, {"id": "contract-documents", "body": "The following documents shall constitute the contract between the Client and the Service Provider:\\n- Amendments made to this contract (if any).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if any).\\nIf there is any discrepancy between the documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "The following documents shall be delivered to the Client upon request for settlement:\\n- Consignment Note (cargo handover document to the Client).\\n- Summary of payment request of the Service Provider prepared as per the agreed tariff.", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over of the goods on the duplicates of the consignment note in an appropriate manner and return the duplicate to the Client.\\nA consignment note shall be prima facie evidence of the receipt of the goods by the Service Provider and of the kind, number, and weight of the goods.", "order": 8, "title": "Consignment Notes"}, {"id": "termination", "body": "The contract may be terminated:\\n- Upon mutual consent of the parties.\\n- Upon completion of the contract period.\\n- If either or both parties breach a fundamental provision of the contract, upon prior legal notice delivered by either party.", "order": 9, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract shall come into full force and effect on the date when all of the following are accomplished:\\n- The contract is signed by the Client and the Service Provider.\\n- The Service Provider has received the advance payment of 100% of the contract price for each train set of cargo.", "order": 10, "title": "Contract Effectiveness"}, {"id": "cargo-amount", "body": "The minimum cargo to be transported shall be one wagon.", "order": 11, "title": "Cargo Amount"}, {"id": "duration", "body": "The contract shall last for three (3) months starting from the date of contract signing, with possible extension upon mutual agreement.", "order": 12, "title": "Duration of Contract"}, {"id": "disputes", "body": "If a dispute arises between the parties, they shall exert efforts to settle their differences amicably.\\nIf the parties fail to settle their disputes amicably, the case shall be taken to the competent Federal Court of law presiding in Addis Ababa.\\nThe governing law shall be the laws of the Federal Democratic Republic of Ethiopia.", "order": 13, "title": "Settlement of Disputes"}, {"id": "customs-clearing", "body": "The Service Provider shall carry out customs clearing on behalf of the Client for the cargo covered by this Agreement, including declaration, lodgement, and follow-up at the customs stations of Djibouti and Ethiopia as applicable to the agreed corridor.\\nThe Service Provider shall act only within the authority granted by the Client and shall not amend a declaration without the Client''s written instruction.\\nCustoms duties, taxes, and any government charges assessed on the cargo remain payable by the Client and are not included in the freight price; the Service Provider shall settle them on the Client''s behalf only where the Client has placed the corresponding funds in advance.\\nThe Service Provider shall hand over all customs documents obtained in the course of clearing to the Client upon completion of each shipment.", "order": 14, "title": "Customs Clearing Services"}, {"id": "customs-client-duties", "body": "Grant the Service Provider a duly signed and stamped power of attorney authorising it to act as the Client''s customs agent for the duration of this Agreement.\\nSubmit every document required for declaration (commercial invoice, packing list, bill of lading or airway bill, permits, certificates of origin, and any authority-specific licence) within one (1) calendar day of the Service Provider''s request.\\nWarrant that the declared description, quantity, value, and tariff classification of the cargo are complete and accurate.\\nBear any penalty, demurrage, storage, or re-inspection cost arising from incorrect, incomplete, or late Client-supplied information or documentation.\\nSettle assessed duties and taxes within the period notified by the Service Provider, failing which the Service Provider may suspend clearing and the cargo shall remain at the Client''s risk and cost.", "order": 15, "title": "Client Obligations for Customs Clearing"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('87b640a0-dd01-46bf-a20f-7859ff77d4d3', 'EXPORT_BULK_NO_CUSTOMS', 'Bulk Export Contract (without customs clearing)', 'Export of bulk cargo (e.g. livestock) by railway from Ethiopian loading stations to Nagad railway freight yard, Djibouti. Customs clearing is handled by the Client.', 'Bulk Cargo Transportation Service by Railway', '["The Client has agreed to deliver bulk cargo to the Service Provider for transport from the agreed Ethiopian loading station to Nagad railway freight yard using the Addis Ababa–Djibouti railway line.", "The Service Provider has agreed to provide the service to transport the bulk cargo from the agreed loading station to Nagad railway freight yard."]', '[{"id": "objective", "body": "To undertake the railway transportation of bulk cargo from the agreed Ethiopian loading station to Nagad railway freight yard.", "order": 1, "title": "Objective of the Service"}, {"id": "client-obligations", "body": "Give written instruction to the Service Provider to transport a minimum of one wagon of cargo; the wagon request shall be made at least five (5) days in advance for each wagon.\\nMaintain detailed information incorporating type, weight, and destination of the cargo ready for shipment, and notify the Service Provider or its nominated agent by notice, email, or fax.\\nPrepare the necessary documents and facilities to make the cargo ready for transport.\\nNote the allowable transport period of the cargo: the maximum time range during which the goods maintain their condition without any problem. The allowable transport period must be at least two (2) days longer than the delivery period.\\nEnsure cargo is properly loaded and fastened in the wagons, provide the necessary lashing and barriers for loading as per the instruction of the departure station, and bear responsibility for the condition of the cargo during the transport period.\\nSupply the necessary provisions for the cargo for each wagon and assign a responsible person to travel with the train to check the status of the cargo during transport, where the nature of the cargo so requires.\\nSupply the minimum amount of cargo available for at least one wagon.\\nExecute loading, lashing, and preparing barriers on wagons at the loading station and provide the complete documents/bill to the Service Provider within one (1) calendar day.\\nFor each extra calendar day used for loading cargo and completing documents at the loading station, pay the wagon-occupied fee per the pricing article; the fee shall be paid within ten (10) calendar days from the date the Service Provider claims it, failing which compensation is payable calculated on the basis of the Commercial Bank of Ethiopia interest rate for the delay period.\\nBe responsible for safety matters, and indemnify and hold the Service Provider harmless against all consequences resulting from accidents arising from or associated with the loading and unloading process.\\nExecute and cover the cost of loading and unloading of cargo at both the loading station and Nagad railway freight yard.\\nFollow up that the cargo is loaded and unloaded on time.\\nDelegate representatives at both ends to consign and receive cargo with signature and stamp. Representatives shall hold a duly signed and stamped power of attorney and shall produce their ID or passport when consigning or receiving the cargo.\\nPrepare the necessary facilities to take over the transported cargo at Nagad freight yard upon arrival by issuing handover documents.\\nTake the transported cargo out of the wagons at Nagad freight yard within one (1) calendar day starting from the day following the notice of arrival.\\nPay the wagon-occupied fee per the pricing article for delays of more than one (1) calendar day at Nagad railway freight yard due to the fault of the Client in resolving customs or third-party claims or any other causes.\\nAfter the wagon list is submitted to the Client, if a wagon is not loaded due to the fault of the Client, pay 100% of the transportation price per wagon for each unloaded wagon.\\nPay the Service Provider 100% of the contract price in advance for each wagon.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Provide the list and identification numbers of wagons with sequence and locomotives at least twenty-four (24) hours in advance to the Client, with any correction at least twelve (12) hours before arrival at destination.\\nTransport the cargo from the loading station to Nagad railway freight yard.\\nProvide safe transportation of the cargo throughout the transit.\\nPresent customs clearance documents and mobilize the rolling stock as needed.\\nProvide the wagons assigned for the freight at the agreed place and time, and follow up that the cargo is loaded on time.\\nTransport and deliver the cargo taken over, in the condition received, within two (2) calendar days to Nagad railway freight yard.\\nWhere a wagon carrying cargo stops due to accident or mechanical problem, promptly notify the nearby customs station, police office, and the Client. A wagon stopped in Ethiopia due to mechanical defect shall be maintained within four (4) calendar days; within Nagad (Djibouti) territory within twelve (12) calendar days. In case of accident where the problem cannot be solved within one (1) calendar day and the wagon is not operational, the Service Provider shall have the cargo carried and delivered by another wagon, and shall provide an accident or defect report issued by the local police office regarding the sustained damage.\\nBuy a cargo liability insurance policy for each supplied wagon.\\nProvide wagon cleaning service and charge the cleaning fee based on actual expenditure.\\nIf the Client fails or refuses to receive the cargo beyond the allowable transport period, the Service Provider has the right to handle the cargo.\\nNeither party shall be liable for any indirect or consequential loss sustained by the other in connection with this Agreement.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "The parties have no obligation to pay demurrage or any other compensation if they have failed to discharge their obligations due to force majeure.\\nForce majeure shall be deemed to exist when the contract is not performed due to any event beyond the reasonable control of a party which prevents that party from complying with its obligations under this Agreement, including but not limited to:\\n- Acts of God (such as, but not limited to, fires, explosions, earthquakes, drought, tidal waves, and floods).\\n- War, hostilities (whether war is declared or not), invasion, acts of foreign enemies, mobilization, requisition, or embargo.\\n- Rebellion, revolution, insurrection, military or usurped power, or civil war.\\n- Contamination by radioactivity from any nuclear fuel or nuclear waste.\\n- Riot, commotion, strikes, go-slows, lockouts, or disorder.\\n- Acts of terrorism.\\nA party wishing to claim protection in respect of a force majeure event shall, as soon as possible following the occurrence or commencement of the event, notify the other party of its nature and expected duration, and shall thereafter keep the other party informed until it is able to perform its obligations under this Agreement.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The price of bulk cargo transportation from the loading station to Nagad, together with any applicable demurrage and surcharge rates, is set out in the Rate Schedule immediately below, expressed as unit prices per origin → destination lane and per wagon.\\nPayment for transport services shall be made in Birr based on the selling price of USD to Birr on the date of payment set by the Commercial Bank of Ethiopia.\\nIf there is an increment or decrement of the USD exchange rate to Birr between the date of payment and the date the wagon/train number is provided to the Client, either the Client shall make the additional payment to the Service Provider or the Service Provider shall refund the difference from the initial payment to the Client.\\nThe cost of loading at the loading station and unloading at Nagad shall be covered by the Client and is not part of this contract agreement.\\nThe Client shall pay 100% of the contract price in advance.\\nThe Client shall pay a demurrage fee for occupied wagons at the rate set out in the Rate Schedule for the applicable occupancy band.\\nDemurrage payment shall be made in Birr based on the selling price of USD to Birr set by the Commercial Bank of Ethiopia on the date of the demurrage occurrence.", "order": 5, "title": "Contract Price and Terms of Payment"}, {"id": "contract-documents", "body": "The following documents shall constitute the contract between the Client and the Service Provider:\\n- Amendments made to this contract (if any).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if any).\\nIf there is any discrepancy between the documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "The following documents shall be delivered to the Client upon request for settlement:\\n- Consignment Note (cargo handover document to the Client).\\n- Summary of payment request of the Service Provider prepared as per the agreed tariff.", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over of the goods on the duplicates of the consignment note in an appropriate manner and return the duplicate to the Client.\\nA consignment note shall be prima facie evidence of the receipt of the goods by the Service Provider and of the kind, number, and weight of the goods.", "order": 8, "title": "Consignment Notes"}, {"id": "termination", "body": "The contract may be terminated:\\n- Upon mutual consent of the parties.\\n- Upon completion of the contract period.\\n- If either or both parties breach a fundamental provision of the contract, upon prior legal notice delivered by either party.", "order": 9, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract shall come into full force and effect on the date when all of the following are accomplished:\\n- The contract is signed by the Client and the Service Provider.\\n- The Service Provider has received the advance payment of 100% of the contract price for each train set of cargo.", "order": 10, "title": "Contract Effectiveness"}, {"id": "cargo-amount", "body": "The minimum cargo to be transported shall be one wagon.", "order": 11, "title": "Cargo Amount"}, {"id": "duration", "body": "The contract shall last for three (3) months starting from the date of contract signing, with possible extension upon mutual agreement.", "order": 12, "title": "Duration of Contract"}, {"id": "disputes", "body": "If a dispute arises between the parties, they shall exert efforts to settle their differences amicably.\\nIf the parties fail to settle their disputes amicably, the case shall be taken to the competent Federal Court of law presiding in Addis Ababa.\\nThe governing law shall be the laws of the Federal Democratic Republic of Ethiopia.", "order": 13, "title": "Settlement of Disputes"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('c6051eea-ae34-49aa-9c42-6d9bc6e30d85', 'INTERCITY_BULK', 'Bulk Intercity Contract', 'Domestic (intercity) bulk cargo transportation by railway between Ethiopian freight yards, e.g. Dire Dawa to Sebeta.', 'Bulk Cargo Transportation Service by Railway (Intercity)', '["The Client has requested the Service Provider to transport bulk cargo between the agreed Ethiopian railway freight yards using the Ethio–Djibouti Railway.", "The Service Provider has accepted the Client''s request to render the said transportation service."]', '[{"id": "objective", "body": "The Service Provider shall undertake the railway transportation of bulk cargo from the agreed origin railway freight yard to the agreed destination railway freight yard.", "order": 1, "title": "Objective of the Contract"}, {"id": "client-obligations", "body": "Provide written instructions to the Service Provider to transport a minimum of sixteen (16) wagons of cargo per consignment.\\nPrepare all necessary documents, including laboratory tests from the pertinent organ and off-taking contract where applicable, and the facilities required to sign the contract and make the cargo ready for transport.\\nAssign representatives at the origin yard and other stations, as required, to hand over the cargo to the Service Provider and handle transit clearance if required.\\nTransport the cargo to the designated loading points at the origin yard.\\nBe responsible for cargo handling: loading at the origin yard and unloading at the destination yard, in accordance with the standards set by the EDR operations and technical terms.\\nMake advance payment to the Service Provider for services in accordance with the payment terms and conditions of this contract.\\nFollow up to ensure that the cargo is loaded and unloaded on time.\\nDelegate representatives at the cargo destination to immediately receive the transported cargo.\\nEnsure representatives are duly authorized with a power of attorney, signed and stamped by the Client, and present valid identification (ID or passport) when consigning or receiving cargo.\\nMaintain detailed information including item, weight, and destination of the cargo, and communicate the same to the Service Provider or its nominated agent via written notice, email, or fax.\\nPrepare the necessary facilities to immediately take over the transported cargo at the destination upon arrival and provide sufficient trucks at the destination freight yard for unloading from railway wagons.\\nUpon arrival of the train/wagon at the unloading site, sign the train arrival confirmation sheet to acknowledge the arrival time.\\nInspect the loaded wagons jointly with the Service Provider and EDR at the loading yard, and again with the customs agent (if required) and the Service Provider at the destination yard.\\nAfter receiving the cargo, sign the Freight Carriage Acceptance Sheet (copies II, III, and IV) immediately to confirm delivery.\\nCompensate the Service Provider or any third party for actual loss or damage caused to persons, property, or wagons during unloading where such damage is attributable to the Client''s fault.\\nEach consignment (train) shall be granted three (3) hours of free time at the loading station and one (1) day at the unloading station. For each additional 3 hours of loading or parking the Client shall pay ETB 5,000 (five thousand) per wagon, and for each additional day of unloading ETB 5,000 (five thousand) per wagon per day.\\nBear demurrage charges of ETB 5,000 (five thousand) per wagon per 3 hours for delays exceeding three (3) hours at any station resulting from the Client''s failure to resolve customs or third-party claims.\\nPay 100% of the transport price in advance. Any additional charges or fees shall be paid within ten (10) calendar days after submission of the Service Provider''s payment request.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Provide the necessary train(s) to execute the transportation service under this contract, and furnish the Client with the list and identification numbers of wagons and locomotives at least 24 hours in advance, with corrections (if any) communicated at least 12 hours before the expected time of arrival at destination.\\nProvide pre-arrival notification including the train number to the discharging terminal and customs at least 24/12 hours before train arrival.\\nTransport the cargo from origin to destination within two (2) days from completion of loading (time counting starts upon completion of documentation and loading).\\nProvide safe transportation of the cargo throughout transit.\\nDeliver the cargo to the Client at the destination railway freight yard in the same condition as received.\\nPurchase a cargo liability insurance policy for each wagon transported.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable due to a force majeure event.\\nFor the purposes of this contract, force majeure shall mean any unforeseeable event or circumstance beyond the reasonable control of the affected party which absolutely prevents the performance of the contract, including but not limited to natural disasters, war, civil commotion, strikes, government actions, epidemics, or interruption of railway operations due to accidents or infrastructure failure.\\nThe affected party shall notify the other party in writing within a reasonable period not exceeding two (2) hours after the occurrence of the force majeure event, providing evidence and details of the impact on performance and the mitigating steps taken.", "order": 4, "title": "Force Majeure"}, {"id": "liability", "body": "The Service Provider will be responsible for any loss, shortage, or damage occurring to the cargo it has received.", "order": 5, "title": "Liabilities Related to Damages and Losses"}, {"id": "pricing", "body": "The price for transporting cargo from the origin freight yard to the destination freight yard is set out in the Rate Schedule immediately below, expressed as a unit price per origin → destination lane and per wagon.\\nEach wagon shall be loaded with a maximum of 70 (seventy) metric tons.\\nPayment for transport services may be made in Ethiopian Birr, based on the Commercial Bank of Ethiopia''s official selling exchange rate of USD to Birr on the date of payment.\\nIf the exchange rate changes between the payment and the wagon assignment date, payment adjustments will be made accordingly.\\nThe contract price shall include the cost of railway transportation from the origin freight yard to the destination freight yard.\\nExcluded cost: cargo handling (loading and unloading) is not included in the contract price and shall remain the sole responsibility of the Client.", "order": 6, "title": "Contract Price"}, {"id": "contract-documents", "body": "The following documents shall constitute the contract between the Client and the Service Provider:\\n- Amendments made to this contract (if any).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if any).\\nIf there is any discrepancy between the documents, they shall be interpreted with priority in the order listed above.", "order": 7, "title": "Contract Documents"}, {"id": "documentation", "body": "The following documents shall be delivered to the Client by the Service Provider to collect and settle payment:\\n- Freight Carriage Acceptance Sheet of the Ethio-Djibouti Railway.\\n- Notice of collecting transportation and miscellaneous charges of the Ethio-Djibouti Railway (if any).\\n- Summary of payment request of the Service Provider prepared as per the agreed tariff.\\n- Railway Waybill.", "order": 8, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over of the goods on copy III (kept by the consignee for future reference) of the Freight Carriage Acceptance Sheet of the Ethio-Djibouti Railway in an appropriate manner and provide it to the Client.\\nThe Freight Carriage Acceptance Sheet shall be prima facie evidence of the receipt of the goods by the Service Provider and of the kind, number, and weight of the goods.", "order": 9, "title": "Consignment Notes"}, {"id": "termination", "body": "The contract may be terminated:\\n- Upon mutual consent of the parties.\\n- Upon completion of the contract period or amount of cargo, whichever comes first.\\n- If either or both parties breach a fundamental provision of the contract, upon one-week prior legal notice delivered by either party.", "order": 10, "title": "Termination of Contract"}, {"id": "duration", "body": "The contract duration shall be three (3) months from the date of effectiveness of the contract, with possible extension upon mutual agreement of the parties.", "order": 11, "title": "Duration of Contract"}, {"id": "disputes", "body": "If a dispute arises between the parties, they shall exert efforts to settle their differences amicably.\\nIf the parties fail to settle their dispute amicably, the case shall be taken to the competent Federal Court of law presiding in Addis Ababa.\\nThe governing law shall be the laws of the Federal Democratic Republic of Ethiopia.", "order": 12, "title": "Settlement of Disputes"}, {"id": "effectiveness", "body": "The contract shall come into full force and effect on the date when the contract is signed by both parties.", "order": 13, "title": "Contract Effectiveness"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('5fba1daf-4e75-407d-855c-73c0545e7b46', 'IMPORT_CONTAINER_CUSTOMS', 'Container Import Contract (with customs clearing)', 'Import container transport by railway from SGTD (Djibouti) to Dire Dawa, Modjo dry port, or Galaan Multipurpose Port, with empty-container return. Customs clearing is performed by the Service Provider.', 'Import Container Transport Service by Railway', '["The Client has requested and agreed to the transportation of container cargo from SGTD railway freight station at Djibouti to Dire Dawa, Modjo dry port, and Galaan Multipurpose Port (GMP), and the return of empty containers from Dire Dawa, Modjo dry port, and Galaan Multipurpose Port (GMP) to SGTD railway freight station using the Addis Ababa–Djibouti railway line.", "The Service Provider has agreed to transport the container cargo as per the terms of this contract."]', '[{"id": "objective", "body": "To provide railway transportation services for 40ft and/or 20ft full containers from SGTD to Dire Dawa, Modjo dry port, and/or Galaan Multipurpose Port (GMP), and empty container return from Dire Dawa, Modjo dry port, and Galaan Multipurpose Port (GMP) to SGTD.\\nThe scope of the services comprises:\\n- Railway transport service.\\n- Cargo handling at Galaan Multipurpose Port (GMP).", "order": 1, "title": "Objective and Scope of the Services"}, {"id": "client-obligations", "body": "Give written/email/electronic shipment instructions to the Service Provider for transportation of container cargo from SGTD to Dire Dawa, Modjo dry port, and/or Galaan Multipurpose Port (GMP).\\nPrepare all necessary documents and facilities for shipment.\\nEnsure the following minimum supply of containers per shipment based on the loading terminal and destination:\\n- Minimum of twenty-five (25) 40ft containers or fifty (50) 20ft containers to Modjo dry port.\\n- Minimum of ten (10) 40ft containers or twenty (20) 20ft containers to Dire Dawa dry port.\\n- Minimum of one (1) 40ft container or two (2) TEU to Galaan Multipurpose Port (GMP).\\nOne flat wagon must carry either one 40ft container or two 20ft containers.\\nIf two 20ft containers are loaded on one flat wagon, their weight difference must not exceed 10 tons.\\nEnsure timely loading and unloading of cargo.\\nAssign representatives at both ends to oversee container handover and ensure the necessary arrangements for cargo reception at the destination upon arrival.\\nMaintain and provide detailed cargo information (type, weight, destination, etc.).\\nBe responsible for cargo handling, loading, and unloading of both empty and full containers at Modjo, Dire Dawa dry port, and SGTD.\\nBook wagons at least five (5) days in advance.\\nEnsure containers are ready one day before the planned loading date.\\nSubmit all required documents to the Djibouti Nagad station at least 24 hours in advance before starting to load. Failure to submit the documents within the stipulated time shall result in the following demurrage charges, calculated as a percentage of the booked wagon price:\\n- Delay of up to twelve (12) hours: 20% of the booked wagon price.\\n- Delay exceeding twelve (12) hours but not more than one (1) day: 50% of the booked wagon price.\\n- Delay of more than one (1) day: 100% of the booked wagon price.\\nCollect the full container from Galaan Multipurpose Port (GMP) within three (3) calendar days from the day following the arrival notice.\\nIf the Client fails to collect the container within the specified period, the Service Provider shall have the right to reposition the container to any location it deems appropriate; in such case, the Service Provider shall not be held responsible for any damage or loss arising from such repositioning.\\nIf the Client fails to collect the container from Galaan Multipurpose Port within the specified period, the Client shall be liable to pay demurrage charges of 15 USD per day per 20ft container and 27 USD per day per 40ft container, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nIn the event the Client fails to collect the container(s) within the specified period, the Client shall be liable to pay double handling charges of 27 USD per 20ft container per handling or 40 USD per 40ft container per handling, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nIf empty containers cannot be offloaded from the train upon arrival at SGTD due to any Client-related issue, the Client shall be liable for the applicable penalty charges.\\nPenalty charges for delay at SGTD/Nagad upon train arrival: 20 USD per day per 20ft container; 33 USD per day per 40ft container.\\nCollect the containers within one day at Dire Dawa and Modjo dry port, or make the necessary payment to the dry port as per the standard of the dry port.\\nFor returning empty containers, deliver to Dire Dawa dry port, Modjo dry port, or Galaan Multipurpose Port.\\nOnce the empty containers are returned from the Client''s premises and stored at Dire Dawa/Modjo dry port while awaiting train allocation for return to SGTD, any demurrage and/or storage charges incurred from the dry port thereafter shall not be the responsibility or liability of the Service Provider; the Client shall be solely responsible for settling such charges.\\nProvide clean empty containers that meet SGTD standards. If the port refuses to take over an empty container because of inside cleanliness problems, additional cleaning costs incurred due to non-compliance will be borne by the Client.\\nEnsure containers are structurally intact and meet weight distribution requirements.\\nProhibited cargo: cargo covered with tarpaulin is not allowed due to safety risks.\\nNotify the Service Provider forty-eight (48) hours in advance before wagon booking if transporting hazardous or valuable goods.\\nIf a booked wagon is not loaded due to Client-related issues, including but not limited to a damaged container, missing lock, unpaid demurrage, port system errors, or incomplete documentation and submission, the Client shall be charged 100% of the total price of the reserved wagon.\\nRefund requests before wagon booking require an official request, with a 3% administrative fee deducted. If the refund is due to the Service Provider, the Client shall receive a full refund. Refunds not requested and completed within six months shall be considered waived.\\nPay 100% of the transportation fee in advance for each train set.\\nSettle additional penalties due to non-compliance within ten (10) days of invoice issuance.\\nLate payment incurs a penalty of an additional 10%.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Assign the necessary voyage based on the operational schedule and cargo demand, and notify the train schedule 48 hours in advance.\\nProvide a list of wagons/voyage or train number 24 hours in advance and update corrections 12 hours before arrival.\\nProvide safe transportation of the containers.\\nDeliver the cargo within two (2) days after train departure, provided that all required documents are submitted on time and no unforeseen circumstances or events occur.\\nReturn empty containers from Dire Dawa, Modjo, and Galaan Multipurpose Port to SGTD within seven (7) calendar days of receipt.\\nIn the event of export cargo operations, the Service Provider may prioritize the loading of export containers during the loading of empty containers and the unloading of import containers from the train at Galaan Multipurpose Port.\\nThe Service Provider reserves the right to refuse the transportation of any cargo classified as dangerous goods.\\nIf any operational, technical, or mechanical problem occurs throughout the transit, notify customs and arrange cargo transfer within 4 days if the incident occurs in Ethiopia, or within 6 days if it occurs in Djibouti.\\nProvide accident or defect reports if needed.\\nBuy cargo liability insurance for each wagon.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The railway transportation rate for each corridor (per one 40ft container or per two 20ft containers, with or without empty return where applicable) is set out in the Rate Schedule immediately below, expressed as a unit price per origin → destination lane and per container.\\nIf cargo exceeds 40 tons per two 20ft containers of gross weight, additional charges apply proportionally.\\nGross weight shall be the total sum of cargo, packing, and container tare weight.\\nPayment for any additional tonnage shall be made in advance before the container is loaded onto the wagon.\\nThe price of loading and unloading and container handling at Modjo, Dire Dawa dry port, and SGTD container railway freight yard is not part of this contract; it is the Client''s responsibility.\\nAdditional costs (if applicable):\\n- Last-mile delivery service by truck from Galaan Multipurpose Port or Modjo to Addis Ababa or Modjo and surrounding areas shall incur an additional cost, fully covered by the Client.\\n- For clients utilizing EDR''s last-mile logistics services, the applicable charges shall vary based on the cargo movement route.\\n- The charge for last-mile delivery from Galaan Multipurpose Port and Modjo dry port shall be communicated to the Client by the Service Provider after receiving the necessary details regarding the cargo destination, type, and weight.\\nAll payments shall be made one hundred percent (100%) in advance in United States Dollars (USD).", "order": 5, "title": "Contract Price and Terms of Payment"}, {"id": "contract-documents", "body": "The following documents constitute this contract:\\n- Amendments (if any).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if any).\\nIf there is any discrepancy between the documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "Equipment Interchange Receipt of SGTD, Railway Waybill, Container Carriage Acceptance Sheet, and incidental charges (if any).\\nPayment summary as per the agreed contract price (if required).", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over and handing over of the container cargo on the Freight Carriage Acceptance Sheet of EDR in an appropriate manner and provide it to the Client.\\nThe Freight Carriage Acceptance Sheet shall be prima facie evidence of the receipt of the container cargo by the Service Provider and of the kind, number, and weight of the goods.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 8, "title": "Consignment Notes"}, {"id": "amendment", "body": "This contract can be amended by mutual agreement.\\nNotwithstanding the above, the Service Provider may revise transport tariffs due to operational and regulatory changes by providing at least five (5) working days'' prior written notice to the Client.", "order": 9, "title": "Amendment"}, {"id": "termination", "body": "The contract may be terminated:\\n- By mutual agreement.\\n- Upon completion of the contract period or agreed cargo shipments.\\n- If either party breaches fundamental terms.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract is valid once signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "Valid until August 31, {{contractYear}}, with a possible extension upon mutual agreement.", "order": 12, "title": "Contract Period"}, {"id": "disputes", "body": "Disputes shall be settled amicably.\\nIf unresolved, disputes shall be taken to the Federal Court in Addis Ababa.", "order": 13, "title": "Settlement of Disputes"}, {"id": "customs-clearing", "body": "The Service Provider shall carry out customs clearing on behalf of the Client for the cargo covered by this Agreement, including declaration, lodgement, and follow-up at the customs stations of Djibouti and Ethiopia as applicable to the agreed corridor.\\nThe Service Provider shall act only within the authority granted by the Client and shall not amend a declaration without the Client''s written instruction.\\nCustoms duties, taxes, and any government charges assessed on the cargo remain payable by the Client and are not included in the freight price; the Service Provider shall settle them on the Client''s behalf only where the Client has placed the corresponding funds in advance.\\nThe Service Provider shall hand over all customs documents obtained in the course of clearing to the Client upon completion of each shipment.", "order": 14, "title": "Customs Clearing Services"}, {"id": "customs-client-duties", "body": "Grant the Service Provider a duly signed and stamped power of attorney authorising it to act as the Client''s customs agent for the duration of this Agreement.\\nSubmit every document required for declaration (commercial invoice, packing list, bill of lading or airway bill, permits, certificates of origin, and any authority-specific licence) within one (1) calendar day of the Service Provider''s request.\\nWarrant that the declared description, quantity, value, and tariff classification of the cargo are complete and accurate.\\nBear any penalty, demurrage, storage, or re-inspection cost arising from incorrect, incomplete, or late Client-supplied information or documentation.\\nSettle assessed duties and taxes within the period notified by the Service Provider, failing which the Service Provider may suspend clearing and the cargo shall remain at the Client''s risk and cost.", "order": 15, "title": "Client Obligations for Customs Clearing"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('8cd8e805-178a-4faa-bdbb-2e7ac5f75e7c', 'IMPORT_CONTAINER_NO_CUSTOMS', 'Container Import Contract (without customs clearing)', 'Import container transport by railway from SGTD (Djibouti) to Dire Dawa, Modjo dry port, or Galaan Multipurpose Port, with empty-container return. Customs clearing is handled by the Client.', 'Import Container Transport Service by Railway', '["The Client has requested and agreed to the transportation of container cargo from SGTD railway freight station at Djibouti to Dire Dawa, Modjo dry port, and Galaan Multipurpose Port (GMP), and the return of empty containers from Dire Dawa, Modjo dry port, and Galaan Multipurpose Port (GMP) to SGTD railway freight station using the Addis Ababa–Djibouti railway line.", "The Service Provider has agreed to transport the container cargo as per the terms of this contract."]', '[{"id": "objective", "body": "To provide railway transportation services for 40ft and/or 20ft full containers from SGTD to Dire Dawa, Modjo dry port, and/or Galaan Multipurpose Port (GMP), and empty container return from Dire Dawa, Modjo dry port, and Galaan Multipurpose Port (GMP) to SGTD.\\nThe scope of the services comprises:\\n- Railway transport service.\\n- Cargo handling at Galaan Multipurpose Port (GMP).", "order": 1, "title": "Objective and Scope of the Services"}, {"id": "client-obligations", "body": "Give written/email/electronic shipment instructions to the Service Provider for transportation of container cargo from SGTD to Dire Dawa, Modjo dry port, and/or Galaan Multipurpose Port (GMP).\\nPrepare all necessary documents and facilities for shipment.\\nEnsure the following minimum supply of containers per shipment based on the loading terminal and destination:\\n- Minimum of twenty-five (25) 40ft containers or fifty (50) 20ft containers to Modjo dry port.\\n- Minimum of ten (10) 40ft containers or twenty (20) 20ft containers to Dire Dawa dry port.\\n- Minimum of one (1) 40ft container or two (2) TEU to Galaan Multipurpose Port (GMP).\\nOne flat wagon must carry either one 40ft container or two 20ft containers.\\nIf two 20ft containers are loaded on one flat wagon, their weight difference must not exceed 10 tons.\\nEnsure timely loading and unloading of cargo.\\nAssign representatives at both ends to oversee container handover and ensure the necessary arrangements for cargo reception at the destination upon arrival.\\nMaintain and provide detailed cargo information (type, weight, destination, etc.).\\nBe responsible for cargo handling, loading, and unloading of both empty and full containers at Modjo, Dire Dawa dry port, and SGTD.\\nBook wagons at least five (5) days in advance.\\nEnsure containers are ready one day before the planned loading date.\\nSubmit all required documents to the Djibouti Nagad station at least 24 hours in advance before starting to load. Failure to submit the documents within the stipulated time shall result in the following demurrage charges, calculated as a percentage of the booked wagon price:\\n- Delay of up to twelve (12) hours: 20% of the booked wagon price.\\n- Delay exceeding twelve (12) hours but not more than one (1) day: 50% of the booked wagon price.\\n- Delay of more than one (1) day: 100% of the booked wagon price.\\nCollect the full container from Galaan Multipurpose Port (GMP) within three (3) calendar days from the day following the arrival notice.\\nIf the Client fails to collect the container within the specified period, the Service Provider shall have the right to reposition the container to any location it deems appropriate; in such case, the Service Provider shall not be held responsible for any damage or loss arising from such repositioning.\\nIf the Client fails to collect the container from Galaan Multipurpose Port within the specified period, the Client shall be liable to pay demurrage charges of 15 USD per day per 20ft container and 27 USD per day per 40ft container, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nIn the event the Client fails to collect the container(s) within the specified period, the Client shall be liable to pay double handling charges of 27 USD per 20ft container per handling or 40 USD per 40ft container per handling, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nIf empty containers cannot be offloaded from the train upon arrival at SGTD due to any Client-related issue, the Client shall be liable for the applicable penalty charges.\\nPenalty charges for delay at SGTD/Nagad upon train arrival: 20 USD per day per 20ft container; 33 USD per day per 40ft container.\\nCollect the containers within one day at Dire Dawa and Modjo dry port, or make the necessary payment to the dry port as per the standard of the dry port.\\nFor returning empty containers, deliver to Dire Dawa dry port, Modjo dry port, or Galaan Multipurpose Port.\\nOnce the empty containers are returned from the Client''s premises and stored at Dire Dawa/Modjo dry port while awaiting train allocation for return to SGTD, any demurrage and/or storage charges incurred from the dry port thereafter shall not be the responsibility or liability of the Service Provider; the Client shall be solely responsible for settling such charges.\\nProvide clean empty containers that meet SGTD standards. If the port refuses to take over an empty container because of inside cleanliness problems, additional cleaning costs incurred due to non-compliance will be borne by the Client.\\nEnsure containers are structurally intact and meet weight distribution requirements.\\nProhibited cargo: cargo covered with tarpaulin is not allowed due to safety risks.\\nNotify the Service Provider forty-eight (48) hours in advance before wagon booking if transporting hazardous or valuable goods.\\nIf a booked wagon is not loaded due to Client-related issues, including but not limited to a damaged container, missing lock, unpaid demurrage, port system errors, or incomplete documentation and submission, the Client shall be charged 100% of the total price of the reserved wagon.\\nRefund requests before wagon booking require an official request, with a 3% administrative fee deducted. If the refund is due to the Service Provider, the Client shall receive a full refund. Refunds not requested and completed within six months shall be considered waived.\\nPay 100% of the transportation fee in advance for each train set.\\nSettle additional penalties due to non-compliance within ten (10) days of invoice issuance.\\nLate payment incurs a penalty of an additional 10%.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Assign the necessary voyage based on the operational schedule and cargo demand, and notify the train schedule 48 hours in advance.\\nProvide a list of wagons/voyage or train number 24 hours in advance and update corrections 12 hours before arrival.\\nProvide safe transportation of the containers.\\nDeliver the cargo within two (2) days after train departure, provided that all required documents are submitted on time and no unforeseen circumstances or events occur.\\nReturn empty containers from Dire Dawa, Modjo, and Galaan Multipurpose Port to SGTD within seven (7) calendar days of receipt.\\nIn the event of export cargo operations, the Service Provider may prioritize the loading of export containers during the loading of empty containers and the unloading of import containers from the train at Galaan Multipurpose Port.\\nThe Service Provider reserves the right to refuse the transportation of any cargo classified as dangerous goods.\\nIf any operational, technical, or mechanical problem occurs throughout the transit, notify customs and arrange cargo transfer within 4 days if the incident occurs in Ethiopia, or within 6 days if it occurs in Djibouti.\\nProvide accident or defect reports if needed.\\nBuy cargo liability insurance for each wagon.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The railway transportation rate for each corridor (per one 40ft container or per two 20ft containers, with or without empty return where applicable) is set out in the Rate Schedule immediately below, expressed as a unit price per origin → destination lane and per container.\\nIf cargo exceeds 40 tons per two 20ft containers of gross weight, additional charges apply proportionally.\\nGross weight shall be the total sum of cargo, packing, and container tare weight.\\nPayment for any additional tonnage shall be made in advance before the container is loaded onto the wagon.\\nThe price of loading and unloading and container handling at Modjo, Dire Dawa dry port, and SGTD container railway freight yard is not part of this contract; it is the Client''s responsibility.\\nAdditional costs (if applicable):\\n- Last-mile delivery service by truck from Galaan Multipurpose Port or Modjo to Addis Ababa or Modjo and surrounding areas shall incur an additional cost, fully covered by the Client.\\n- For clients utilizing EDR''s last-mile logistics services, the applicable charges shall vary based on the cargo movement route.\\n- The charge for last-mile delivery from Galaan Multipurpose Port and Modjo dry port shall be communicated to the Client by the Service Provider after receiving the necessary details regarding the cargo destination, type, and weight.\\nAll payments shall be made one hundred percent (100%) in advance in United States Dollars (USD).", "order": 5, "title": "Contract Price and Terms of Payment"}, {"id": "contract-documents", "body": "The following documents constitute this contract:\\n- Amendments (if any).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if any).\\nIf there is any discrepancy between the documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "Equipment Interchange Receipt of SGTD, Railway Waybill, Container Carriage Acceptance Sheet, and incidental charges (if any).\\nPayment summary as per the agreed contract price (if required).", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over and handing over of the container cargo on the Freight Carriage Acceptance Sheet of EDR in an appropriate manner and provide it to the Client.\\nThe Freight Carriage Acceptance Sheet shall be prima facie evidence of the receipt of the container cargo by the Service Provider and of the kind, number, and weight of the goods.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 8, "title": "Consignment Notes"}, {"id": "amendment", "body": "This contract can be amended by mutual agreement.\\nNotwithstanding the above, the Service Provider may revise transport tariffs due to operational and regulatory changes by providing at least five (5) working days'' prior written notice to the Client.", "order": 9, "title": "Amendment"}, {"id": "termination", "body": "The contract may be terminated:\\n- By mutual agreement.\\n- Upon completion of the contract period or agreed cargo shipments.\\n- If either party breaches fundamental terms.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract is valid once signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "Valid until August 31, {{contractYear}}, with a possible extension upon mutual agreement.", "order": 12, "title": "Contract Period"}, {"id": "disputes", "body": "Disputes shall be settled amicably.\\nIf unresolved, disputes shall be taken to the Federal Court in Addis Ababa.", "order": 13, "title": "Settlement of Disputes"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('9b2636ec-3ad4-4f26-9133-6a6c9fc3f798', 'EXPORT_CONTAINER_CUSTOMS', 'Container Export Contract (with customs clearing)', 'Export container transport, freight forwarding, and customs clearing from Galaan Multipurpose Port or Modjo dry port to SGTD container freight station (Djibouti). Customs clearing is performed by the Service Provider.', 'Export Container Transport, Freight Forwarding and Customs Clearing Service', '["The parties have agreed on the following services: rail transport, customs clearance, transit work, freight forwarding, and handling of container cargo."]', '[{"id": "objective", "body": "Customs clearance (Ethiopia side):\\n- Processing of export declarations.\\n- Coordination with the Ethiopian Customs Authority for clearance.\\n- Ensuring compliance with all export regulations.\\nRail transport:\\n- Transportation of containers from Galaan Multipurpose Port (GMP) or Modjo dry port to SGTD container freight station.\\nDjibouti transit and handling:\\n- Customs clearance in Djibouti.\\n- Coordination with Djibouti port and transit authorities.\\n- Freight forwarding and last-mile facilitation as required.\\nExcluded costs:\\n- Shore handling.\\n- Shifting of containers from SGTD to DMP or DMP to SGTD port.", "order": 1, "title": "Objective and Scope of the Services"}, {"id": "client-obligations", "body": "Give written/email instructions to the Service Provider for transportation of containers from Galaan Multipurpose Port (GMP) and/or Modjo to Djibouti.\\nSupply a minimum of two (2) 20ft containers (or an equivalent load to fill one flat wagon).\\nSubmit all forwarding service booking requests at least seventy-two (72) hours prior to the scheduled train departure and no later than 7 days before the vessel cut-off time, whichever is applicable.\\nFor clients requiring first-mile service, submit a first-mile service request notice no less than seventy-two (72) hours in advance.\\nComplete and submit accurate export documents as per the request of the Service Provider; payment must be submitted at least 36 hours before train departure.\\nDeliver all cargo to the designated loading port or freight station at least three (3) hours prior to the scheduled train loading time.\\nFailure to meet the stated deadlines may result in cancellation of the booking and transfer arrangements; any resulting delays, penalties, or additional costs shall be the sole responsibility of the Client.\\nIf the Client fails to deliver the container, fails to provide the requested documents for completing export documents as instructed above, or cancels after wagon reservation, the Client shall pay USD 150.00 per wagon as a penalty, after notification.\\nContainers must have four (4) undamaged corners.\\nOne flat wagon must carry either one 40ft container or two 20ft containers.\\nIf two 20ft containers are loaded on one flat wagon, their weight difference must not exceed 10 tons.\\nThe gross weight of the container must not exceed the standard loading capacity indicated on the container; the Client is responsible for ensuring full compliance with the maximum allowable load.\\nProhibited cargo: cargo covered with tarpaulin is not allowed due to safety risks.\\nIf the cargo to be transported is dangerous and/or valuable goods, notify the Service Provider 48 (forty-eight) hours before the wagon booking for further discussion and decision.\\nRefund requests before wagon booking require an official request, with a 3% administrative fee deducted. If the refund is due to the Service Provider, the Client shall receive a full refund. Refunds not requested and completed within six months shall be considered waived.\\nAny delay caused by missing or incorrect documents shall be the Client''s responsibility.\\n100% of the transportation and customs clearance fee must be paid in advance.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Complete gate pass processing and submit to Nagad Station for each shipment within eighteen (18) hours after train departure.\\nThe Service Provider reserves the right to refuse the transportation of any cargo classified as dangerous goods.\\nMaintain cargo liability insurance for railway transport; additional insurance for port handling or last-mile transport shall be the Client''s responsibility.\\nThe Service Provider is not liable for customs penalties or demurrage due to delays beyond its control.\\nNotify the Client immediately, in writing, of any delays, port issues, or customs holds.\\nThe Service Provider shall not be liable for:\\n- Inherent defects of the cargo.\\n- Improper packing or loading conducted by the Client.\\n- Customs-related delays.\\n- Delays caused by force majeure events.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The railway transportation charges and the freight forwarding and customs clearance charges for each corridor (per 40ft container and per two 20ft containers) are set out in the Rate Schedule immediately below, expressed as unit prices per origin → destination lane and per container.\\nWhere the total cargo weight exceeds fifty (50) metric tons per two (2) 20ft containers, an additional charge shall apply for each excess metric ton at the overweight rate set out in the Rate Schedule.\\nFor consolidated containers containing more than one (1) shipping document, the first document shall be included under the agreed contract rate; any additional document within the same container shall be subject to the extra-document charge set out in the Rate Schedule.\\nPayment must be supported by an official receipt before cargo departs from Galaan Multipurpose Port/Modjo.\\nIf the Client uses PIL Shipping Line, any local charge incurred will be covered by the Client as per the invoice issued by the shipping line.\\nIf storage or demurrage occurs due to Client-related issues (delay in document submission, payment delay, or any other Client-related reason), the Client shall pay the corresponding charges; charges apply per day after the free storage period, based on the invoice and SGTD tariff.\\nDuring export season, EDR may provide seasonal export support through the facilitation of empty containers.\\nAdditional costs (if applicable):\\n- First-mile delivery service by truck within Addis Ababa or Modjo and surrounding areas, originating from warehouses or any other places designated by the Client, shall incur an additional cost fully covered by the Client.\\n- For clients utilizing EDR''s first- or last-mile logistics services, the applicable charges shall vary based on the cargo movement route.\\n- The charge for first-mile delivery to Galaan Multipurpose Port and Modjo dry port shall be communicated to the Client by the Service Provider after receiving the necessary details regarding the cargo origin, type, and weight.\\n- For any vessel outbound charges, IMO charges, or other fees not included in the port handling payment, the Service Provider shall request the Client to settle the required amount based on the official receipt issued by the port or the shipping line.\\nPayment terms:\\n- All charges, including rail transport and customs clearance charges, remain 100% payable in advance.\\n- Payments shall be calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date the wagon or train number is provided.\\n- If the exchange rate changes between the payment and the wagon assignment date, adjustments will be made accordingly.\\n- Any additional costs incurred due to customs issues or port delays shall be borne by the Client and paid based on actual costs, supported by official receipts, within 10 days.\\n- Late payment incurs a penalty of 10%.", "order": 5, "title": "Pricing and Payment Terms"}, {"id": "contract-documents", "body": "The following documents shall constitute the contract between the Client and the Service Provider:\\n- Any amendments made to this contract (if applicable).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if applicable).\\nIn the event of any discrepancy between these documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "Consignment Note (cargo handover document).\\nPayment summary prepared as per the agreed tariff, if required.", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over and handing over of the container cargo on the Freight Carriage Acceptance Sheet of EDR in an appropriate manner and provide it to the Client.\\nThe Freight Carriage Acceptance Sheet shall be prima facie evidence of the receipt of the container cargo by the Service Provider and of the kind, number, and weight of the goods.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 8, "title": "Consignment Notes"}, {"id": "amendment", "body": "This contract can be amended by mutual agreement.\\nNotwithstanding the above, the Service Provider may revise transport tariffs due to operational and regulatory changes by providing at least five (5) working days'' prior written notice to the Client.", "order": 9, "title": "Amendment"}, {"id": "termination", "body": "The contract may be terminated:\\n- By mutual agreement.\\n- Upon completion of the contract period or agreed cargo shipments.\\n- If either party breaches fundamental terms.\\nIf terminated for cause, the terminating party must issue a 15-day written notice specifying the breach and allow an opportunity to cure, if applicable.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract is valid once signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "Valid until August 31, {{contractYear}}, with a possible extension upon mutual agreement.", "order": 12, "title": "Contract Period"}, {"id": "disputes", "body": "Disputes shall be settled amicably.\\nIf amicable settlement fails, disputes shall be submitted to the Federal Court located in Addis Ababa.\\nThe signatories confirm that they are fully authorized to sign and execute this Contract Agreement; the power of attorney of the signatories for the parties is enclosed with this contract agreement.", "order": 13, "title": "Settlement of Disputes"}, {"id": "customs-clearing", "body": "The Service Provider shall carry out customs clearing on behalf of the Client for the cargo covered by this Agreement, including declaration, lodgement, and follow-up at the customs stations of Djibouti and Ethiopia as applicable to the agreed corridor.\\nThe Service Provider shall act only within the authority granted by the Client and shall not amend a declaration without the Client''s written instruction.\\nCustoms duties, taxes, and any government charges assessed on the cargo remain payable by the Client and are not included in the freight price; the Service Provider shall settle them on the Client''s behalf only where the Client has placed the corresponding funds in advance.\\nThe Service Provider shall hand over all customs documents obtained in the course of clearing to the Client upon completion of each shipment.", "order": 14, "title": "Customs Clearing Services"}, {"id": "customs-client-duties", "body": "Grant the Service Provider a duly signed and stamped power of attorney authorising it to act as the Client''s customs agent for the duration of this Agreement.\\nSubmit every document required for declaration (commercial invoice, packing list, bill of lading or airway bill, permits, certificates of origin, and any authority-specific licence) within one (1) calendar day of the Service Provider''s request.\\nWarrant that the declared description, quantity, value, and tariff classification of the cargo are complete and accurate.\\nBear any penalty, demurrage, storage, or re-inspection cost arising from incorrect, incomplete, or late Client-supplied information or documentation.\\nSettle assessed duties and taxes within the period notified by the Service Provider, failing which the Service Provider may suspend clearing and the cargo shall remain at the Client''s risk and cost.", "order": 15, "title": "Client Obligations for Customs Clearing"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('79b1c17d-ae24-4945-98c5-ec3f58823ce7', 'EXPORT_CONTAINER_NO_CUSTOMS', 'Container Export Contract (without customs clearing)', 'Export container transport, freight forwarding, and customs clearing from Galaan Multipurpose Port or Modjo dry port to SGTD container freight station (Djibouti). Customs clearing is handled by the Client.', 'Export Container Transport, Freight Forwarding and Customs Clearing Service', '["The parties have agreed on the following services: rail transport, customs clearance, transit work, freight forwarding, and handling of container cargo."]', '[{"id": "objective", "body": "Customs clearance (Ethiopia side):\\n- Processing of export declarations.\\n- Coordination with the Ethiopian Customs Authority for clearance.\\n- Ensuring compliance with all export regulations.\\nRail transport:\\n- Transportation of containers from Galaan Multipurpose Port (GMP) or Modjo dry port to SGTD container freight station.\\nDjibouti transit and handling:\\n- Customs clearance in Djibouti.\\n- Coordination with Djibouti port and transit authorities.\\n- Freight forwarding and last-mile facilitation as required.\\nExcluded costs:\\n- Shore handling.\\n- Shifting of containers from SGTD to DMP or DMP to SGTD port.", "order": 1, "title": "Objective and Scope of the Services"}, {"id": "client-obligations", "body": "Give written/email instructions to the Service Provider for transportation of containers from Galaan Multipurpose Port (GMP) and/or Modjo to Djibouti.\\nSupply a minimum of two (2) 20ft containers (or an equivalent load to fill one flat wagon).\\nSubmit all forwarding service booking requests at least seventy-two (72) hours prior to the scheduled train departure and no later than 7 days before the vessel cut-off time, whichever is applicable.\\nFor clients requiring first-mile service, submit a first-mile service request notice no less than seventy-two (72) hours in advance.\\nComplete and submit accurate export documents as per the request of the Service Provider; payment must be submitted at least 36 hours before train departure.\\nDeliver all cargo to the designated loading port or freight station at least three (3) hours prior to the scheduled train loading time.\\nFailure to meet the stated deadlines may result in cancellation of the booking and transfer arrangements; any resulting delays, penalties, or additional costs shall be the sole responsibility of the Client.\\nIf the Client fails to deliver the container, fails to provide the requested documents for completing export documents as instructed above, or cancels after wagon reservation, the Client shall pay USD 150.00 per wagon as a penalty, after notification.\\nContainers must have four (4) undamaged corners.\\nOne flat wagon must carry either one 40ft container or two 20ft containers.\\nIf two 20ft containers are loaded on one flat wagon, their weight difference must not exceed 10 tons.\\nThe gross weight of the container must not exceed the standard loading capacity indicated on the container; the Client is responsible for ensuring full compliance with the maximum allowable load.\\nProhibited cargo: cargo covered with tarpaulin is not allowed due to safety risks.\\nIf the cargo to be transported is dangerous and/or valuable goods, notify the Service Provider 48 (forty-eight) hours before the wagon booking for further discussion and decision.\\nRefund requests before wagon booking require an official request, with a 3% administrative fee deducted. If the refund is due to the Service Provider, the Client shall receive a full refund. Refunds not requested and completed within six months shall be considered waived.\\nAny delay caused by missing or incorrect documents shall be the Client''s responsibility.\\n100% of the transportation and customs clearance fee must be paid in advance.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Complete gate pass processing and submit to Nagad Station for each shipment within eighteen (18) hours after train departure.\\nThe Service Provider reserves the right to refuse the transportation of any cargo classified as dangerous goods.\\nMaintain cargo liability insurance for railway transport; additional insurance for port handling or last-mile transport shall be the Client''s responsibility.\\nThe Service Provider is not liable for customs penalties or demurrage due to delays beyond its control.\\nNotify the Client immediately, in writing, of any delays, port issues, or customs holds.\\nThe Service Provider shall not be liable for:\\n- Inherent defects of the cargo.\\n- Improper packing or loading conducted by the Client.\\n- Customs-related delays.\\n- Delays caused by force majeure events.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The railway transportation charges and the freight forwarding and customs clearance charges for each corridor (per 40ft container and per two 20ft containers) are set out in the Rate Schedule immediately below, expressed as unit prices per origin → destination lane and per container.\\nWhere the total cargo weight exceeds fifty (50) metric tons per two (2) 20ft containers, an additional charge shall apply for each excess metric ton at the overweight rate set out in the Rate Schedule.\\nFor consolidated containers containing more than one (1) shipping document, the first document shall be included under the agreed contract rate; any additional document within the same container shall be subject to the extra-document charge set out in the Rate Schedule.\\nPayment must be supported by an official receipt before cargo departs from Galaan Multipurpose Port/Modjo.\\nIf the Client uses PIL Shipping Line, any local charge incurred will be covered by the Client as per the invoice issued by the shipping line.\\nIf storage or demurrage occurs due to Client-related issues (delay in document submission, payment delay, or any other Client-related reason), the Client shall pay the corresponding charges; charges apply per day after the free storage period, based on the invoice and SGTD tariff.\\nDuring export season, EDR may provide seasonal export support through the facilitation of empty containers.\\nAdditional costs (if applicable):\\n- First-mile delivery service by truck within Addis Ababa or Modjo and surrounding areas, originating from warehouses or any other places designated by the Client, shall incur an additional cost fully covered by the Client.\\n- For clients utilizing EDR''s first- or last-mile logistics services, the applicable charges shall vary based on the cargo movement route.\\n- The charge for first-mile delivery to Galaan Multipurpose Port and Modjo dry port shall be communicated to the Client by the Service Provider after receiving the necessary details regarding the cargo origin, type, and weight.\\n- For any vessel outbound charges, IMO charges, or other fees not included in the port handling payment, the Service Provider shall request the Client to settle the required amount based on the official receipt issued by the port or the shipping line.\\nPayment terms:\\n- All charges, including rail transport and customs clearance charges, remain 100% payable in advance.\\n- Payments shall be calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date the wagon or train number is provided.\\n- If the exchange rate changes between the payment and the wagon assignment date, adjustments will be made accordingly.\\n- Any additional costs incurred due to customs issues or port delays shall be borne by the Client and paid based on actual costs, supported by official receipts, within 10 days.\\n- Late payment incurs a penalty of 10%.", "order": 5, "title": "Pricing and Payment Terms"}, {"id": "contract-documents", "body": "The following documents shall constitute the contract between the Client and the Service Provider:\\n- Any amendments made to this contract (if applicable).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if applicable).\\nIn the event of any discrepancy between these documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "Consignment Note (cargo handover document).\\nPayment summary prepared as per the agreed tariff, if required.", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over and handing over of the container cargo on the Freight Carriage Acceptance Sheet of EDR in an appropriate manner and provide it to the Client.\\nThe Freight Carriage Acceptance Sheet shall be prima facie evidence of the receipt of the container cargo by the Service Provider and of the kind, number, and weight of the goods.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 8, "title": "Consignment Notes"}, {"id": "amendment", "body": "This contract can be amended by mutual agreement.\\nNotwithstanding the above, the Service Provider may revise transport tariffs due to operational and regulatory changes by providing at least five (5) working days'' prior written notice to the Client.", "order": 9, "title": "Amendment"}, {"id": "termination", "body": "The contract may be terminated:\\n- By mutual agreement.\\n- Upon completion of the contract period or agreed cargo shipments.\\n- If either party breaches fundamental terms.\\nIf terminated for cause, the terminating party must issue a 15-day written notice specifying the breach and allow an opportunity to cure, if applicable.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract is valid once signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "Valid until August 31, {{contractYear}}, with a possible extension upon mutual agreement.", "order": 12, "title": "Contract Period"}, {"id": "disputes", "body": "Disputes shall be settled amicably.\\nIf amicable settlement fails, disputes shall be submitted to the Federal Court located in Addis Ababa.\\nThe signatories confirm that they are fully authorized to sign and execute this Contract Agreement; the power of attorney of the signatories for the parties is enclosed with this contract agreement.", "order": 13, "title": "Settlement of Disputes"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
INSERT INTO freight.contract_templates (id, code, name, description, document_title, whereas_clauses, articles, is_active, created_at, updated_at, deleted_at) VALUES ('cfbe197f-0e08-4af1-8622-8442fda8a170', 'INTERCITY_CONTAINER', 'Container Intercity Contract', 'Domestic (intercity) container transport by railway between Ethiopian terminals — Galaan Multipurpose Port, Modjo dry port, and Dire Dawa — including empty repositioning.', 'Intercity Container Transport Service by Railway', '["The Client has requested and agreed to the transportation of container cargo between the agreed Ethiopian railway terminals (Galaan Multipurpose Port (GMP), Modjo dry port, and Dire Dawa), including the repositioning of empty containers between those terminals, using the Addis Ababa–Djibouti railway line within Ethiopia.", "The Service Provider has agreed to transport the container cargo as per the terms of this contract."]', '[{"id": "objective", "body": "To provide domestic railway transportation services for 40ft and/or 20ft full containers between the agreed Ethiopian terminals (Galaan Multipurpose Port (GMP), Modjo dry port, and Dire Dawa), and the repositioning of empty containers between those terminals.\\nThe scope of the services comprises:\\n- Railway transport service between the agreed origin and destination terminals.\\n- Cargo handling at Galaan Multipurpose Port (GMP).", "order": 1, "title": "Objective and Scope of the Services"}, {"id": "client-obligations", "body": "Give written/email/electronic shipment instructions to the Service Provider for transportation of container cargo between the agreed terminals.\\nPrepare all necessary documents and facilities for shipment.\\nEnsure the minimum supply of containers per shipment agreed with the Service Provider for the selected loading terminal and destination.\\nOne flat wagon must carry either one 40ft container or two 20ft containers.\\nIf two 20ft containers are loaded on one flat wagon, their weight difference must not exceed 10 tons.\\nEnsure timely loading and unloading of cargo.\\nAssign representatives at both ends to oversee container handover and ensure the necessary arrangements for cargo reception at the destination upon arrival.\\nMaintain and provide detailed cargo information (type, weight, destination, etc.).\\nBe responsible for cargo handling, loading, and unloading of both empty and full containers at Modjo and Dire Dawa dry port.\\nBook wagons at least five (5) days in advance.\\nEnsure containers are ready one day before the planned loading date.\\nCollect the full container from Galaan Multipurpose Port (GMP) within three (3) calendar days from the day following the arrival notice.\\nIf the Client fails to collect the container within the specified period, the Service Provider shall have the right to reposition the container to any location it deems appropriate; in such case, the Service Provider shall not be held responsible for any damage or loss arising from such repositioning.\\nIf the Client fails to collect the container from Galaan Multipurpose Port within the specified period, the Client shall be liable to pay demurrage charges of 15 USD per day per 20ft container and 27 USD per day per 40ft container, calculated based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date of payment.\\nIn the event the Client fails to collect the container(s) within the specified period, the Client shall be liable to pay double handling charges of 27 USD per 20ft container per handling or 40 USD per 40ft container per handling.\\nCollect the containers within one day at Dire Dawa and Modjo dry port, or make the necessary payment to the dry port as per the standard of the dry port.\\nOnce empty containers are returned from the Client''s premises and stored at a dry port while awaiting train allocation, any demurrage and/or storage charges incurred from the dry port thereafter shall be the sole responsibility of the Client.\\nProvide clean empty containers that meet the receiving terminal''s standards; additional cleaning costs incurred due to non-compliance will be borne by the Client.\\nEnsure containers are structurally intact and meet weight distribution requirements.\\nProhibited cargo: cargo covered with tarpaulin is not allowed due to safety risks.\\nNotify the Service Provider forty-eight (48) hours in advance before wagon booking if transporting hazardous or valuable goods.\\nIf a booked wagon is not loaded due to Client-related issues, including but not limited to a damaged container, missing lock, unpaid demurrage, port system errors, or incomplete documentation and submission, the Client shall be charged 100% of the total price of the reserved wagon.\\nRefund requests before wagon booking require an official request, with a 3% administrative fee deducted. If the refund is due to the Service Provider, the Client shall receive a full refund. Refunds not requested and completed within six months shall be considered waived.\\nPay 100% of the transportation fee in advance for each train set.\\nSettle additional penalties due to non-compliance within ten (10) days of invoice issuance.\\nLate payment incurs a penalty of an additional 10%.", "order": 2, "title": "Obligations of the Client"}, {"id": "provider-obligations", "body": "Assign the necessary voyage based on the operational schedule and cargo demand, and notify the train schedule 48 hours in advance.\\nProvide a list of wagons/voyage or train number 24 hours in advance and update corrections 12 hours before arrival.\\nProvide safe transportation of the containers.\\nDeliver the cargo within two (2) days after train departure, provided that all required documents are submitted on time and no unforeseen circumstances or events occur.\\nIn the event of export cargo operations, the Service Provider may prioritize the loading of export containers during the loading of empty containers and the unloading of containers from the train at Galaan Multipurpose Port.\\nThe Service Provider reserves the right to refuse the transportation of any cargo classified as dangerous goods.\\nIf any operational, technical, or mechanical problem occurs throughout the transit, notify the Client and the relevant authorities and arrange cargo transfer within four (4) days.\\nProvide accident or defect reports if needed.\\nBuy cargo liability insurance for each wagon.", "order": 3, "title": "Obligations of the Service Provider"}, {"id": "force-majeure", "body": "Neither party shall be liable for delays or non-performance caused by force majeure events beyond their reasonable control.\\nForce majeure shall be interpreted in accordance with the Ethiopian Civil Code.", "order": 4, "title": "Force Majeure"}, {"id": "pricing", "body": "The applicable rate per 40ft container or per two (2) 20ft containers for the agreed route is set out in the Rate Schedule immediately below, expressed as a unit price per origin → destination lane and per container.\\nIf cargo exceeds 40 tons per two 20ft containers of gross weight, additional charges apply proportionally.\\nGross weight shall be the total sum of cargo, packing, and container tare weight.\\nPayment for any additional tonnage shall be made in advance before the container is loaded onto the wagon.\\nThe price of loading and unloading and container handling at Modjo and Dire Dawa dry port is not part of this contract; it is the Client''s responsibility.\\nAdditional costs (if applicable):\\n- Last-mile delivery service by truck from the destination terminal to the Client''s premises shall incur an additional cost, fully covered by the Client.\\n- For clients utilizing EDR''s last-mile logistics services, the applicable charges shall vary based on the cargo movement route and shall be communicated to the Client by the Service Provider after receiving the necessary details regarding the cargo destination, type, and weight.\\nAll payments shall be made one hundred percent (100%) in advance.\\nPayment may be made in Ethiopian Birr based on the Commercial Bank of Ethiopia''s daily selling exchange rate on the date the wagon or train number is provided; if the exchange rate changes between the payment and the wagon assignment date, adjustments will be made accordingly.", "order": 5, "title": "Contract Price and Terms of Payment"}, {"id": "contract-documents", "body": "The following documents constitute this contract:\\n- Amendments (if any).\\n- This Contract Agreement.\\n- Final minutes of negotiation (if any).\\nIf there is any discrepancy between the documents, they shall be interpreted with priority in the order listed above.", "order": 6, "title": "Contract Documents"}, {"id": "documentation", "body": "Equipment Interchange Receipt, Railway Waybill, Container Carriage Acceptance Sheet, and incidental charges (if any).\\nPayment summary as per the agreed contract price (if required).", "order": 7, "title": "Documentation Requirements"}, {"id": "consignment-notes", "body": "The Service Provider must certify the taking over and handing over of the container cargo on the Freight Carriage Acceptance Sheet of EDR in an appropriate manner and provide it to the Client.\\nThe Freight Carriage Acceptance Sheet shall be prima facie evidence of the receipt of the container cargo by the Service Provider and of the kind, number, and weight of the goods.\\nUpon delivery of the cargo to the Client, the Cargo Handover Out Voucher signed by both parties shall serve as evidence of cargo receipt.", "order": 8, "title": "Consignment Notes"}, {"id": "amendment", "body": "This contract can be amended by mutual agreement.\\nNotwithstanding the above, the Service Provider may revise transport tariffs due to operational and regulatory changes by providing at least five (5) working days'' prior written notice to the Client.", "order": 9, "title": "Amendment"}, {"id": "termination", "body": "The contract may be terminated:\\n- By mutual agreement.\\n- Upon completion of the contract period or agreed cargo shipments.\\n- If either party breaches fundamental terms.", "order": 10, "title": "Termination of Contract"}, {"id": "effectiveness", "body": "The contract is valid once signed by both parties.", "order": 11, "title": "Contract Effectiveness"}, {"id": "duration", "body": "Valid until August 31, {{contractYear}}, with a possible extension upon mutual agreement.", "order": 12, "title": "Contract Period"}, {"id": "disputes", "body": "Disputes shall be settled amicably.\\nIf unresolved, disputes shall be taken to the Federal Court in Addis Ababa.", "order": 13, "title": "Settlement of Disputes"}]', true, '2026-08-05 07:31:08.510384+00', '2026-08-05 07:31:08.510384+00', NULL);
|
||
`,
|
||
dropdown_settings: `
|
||
INSERT INTO freight.dropdown_settings (id, code, label, description, multiple, meta, created_at, updated_at, deleted_at) VALUES ('7d01044c-0f2b-497d-ad1a-781c1b82f2b1', 'general_contract_period', 'General Contract Period (months)', 'How many months a general contract stays open for ordering after activation.', false, NULL, '2026-08-05 07:31:06.89436+00', '2026-08-05 07:31:06.89436+00', NULL);
|
||
INSERT INTO freight.dropdown_settings (id, code, label, description, multiple, meta, created_at, updated_at, deleted_at) VALUES ('a24f1cf9-4c8b-4347-9454-417dd425925c', 'contract_validity_periods', 'Contract Validity Periods (days)', 'Validity durations (in days) a staff can choose when accepting a submitted contract.', false, NULL, '2026-08-05 07:31:06.898804+00', '2026-08-05 07:31:06.898804+00', NULL);
|
||
INSERT INTO freight.dropdown_settings (id, code, label, description, multiple, meta, created_at, updated_at, deleted_at) VALUES ('52a2969a-d720-4c4b-87f5-e710ca5008f2', 'ro_vessel_min_days', 'RO vessel minimum lead time (days)', 'Minimum days between today and the vessel departure date on an export Release Order.', false, NULL, '2026-08-05 07:31:07.906349+00', '2026-08-05 07:31:07.906349+00', NULL);
|
||
INSERT INTO freight.dropdown_settings (id, code, label, description, multiple, meta, created_at, updated_at, deleted_at) VALUES ('e1fb2dfd-f166-4dd7-8b93-339b296c487b', 'import_train_numbers', 'Import train numbers', 'Even IMPORT run numbers (Djibouti → Ethiopia) selectable when building a train. The paired export number is derived automatically (import − 1).', false, '{"clearable": true, "searchable": true}', '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
`,
|
||
dropdown_options: `
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('ec8b7dce-6c1a-4a55-80e6-e455d743747f', '7d01044c-0f2b-497d-ad1a-781c1b82f2b1', '3', '3 months', NULL, false, 0, NULL, '2026-08-05 07:31:06.89436+00', '2026-08-05 07:31:06.89436+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('aedbb6db-51bc-4b0e-98e9-a366afb97fa2', 'a24f1cf9-4c8b-4347-9454-417dd425925c', '180', '6 months', NULL, false, 0, NULL, '2026-08-05 07:31:06.898804+00', '2026-08-05 07:31:06.898804+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('0abee7ce-91c7-4f09-afa9-e33aa8e3de58', 'a24f1cf9-4c8b-4347-9454-417dd425925c', '365', '1 year', NULL, false, 1, NULL, '2026-08-05 07:31:06.898804+00', '2026-08-05 07:31:06.898804+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('2191ce22-9746-47bf-b799-6355bf4e24d6', 'a24f1cf9-4c8b-4347-9454-417dd425925c', '730', '2 years', NULL, false, 2, NULL, '2026-08-05 07:31:06.898804+00', '2026-08-05 07:31:06.898804+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('bff86860-2ce7-43bb-a27a-b1ce1bbf41c8', '52a2969a-d720-4c4b-87f5-e710ca5008f2', '2', '2 days', NULL, false, 0, NULL, '2026-08-05 07:31:07.906349+00', '2026-08-05 07:31:07.906349+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('4e9c93ae-b530-4165-abec-6396b859b07a', '52a2969a-d720-4c4b-87f5-e710ca5008f2', '3', '3 days', NULL, false, 1, NULL, '2026-08-05 07:31:07.906349+00', '2026-08-05 07:31:07.906349+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('c5235b46-77c0-4525-8ff6-3e601575da3e', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8002', '8002', NULL, false, 0, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('7801c5fb-d32b-45ca-bf5b-2d5cf6151d85', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8102', '8102', NULL, false, 1, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('efc5f757-fe78-48a6-885f-e15240b204af', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8202', '8202', NULL, false, 2, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('a20cfe92-ebe3-4a61-9cdc-0da9026a54a2', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8302', '8302', NULL, false, 3, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('cb9e619e-8170-423e-80b4-b9a93812f197', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8402', '8402', NULL, false, 4, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('041fba86-4b7a-4d92-b2ad-fe1a36d74a5e', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8502', '8502', NULL, false, 5, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('a2c8bbd2-d538-4cb1-a68f-fa8e6a65fdda', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8602', '8602', NULL, false, 6, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('aac4f7ce-2cd1-4ae3-9f3f-3d88c29101c1', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8702', '8702', NULL, false, 7, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('832e6846-52ab-4945-83cf-9b085007f267', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8802', '8802', NULL, false, 8, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('fe334532-c484-4ba3-be02-bea841824b3e', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '8902', '8902', NULL, false, 9, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
INSERT INTO freight.dropdown_options (id, setting_id, value, label, note, is_disabled, display_order, meta, created_at, updated_at, deleted_at) VALUES ('252f6260-2940-4cc6-a758-348a27f75ac0', 'e1fb2dfd-f166-4dd7-8b93-339b296c487b', '9002', '9002', NULL, false, 10, NULL, '2026-08-05 07:31:09.035777+00', '2026-08-05 07:31:09.035777+00', NULL);
|
||
`,
|
||
exchange_settings: `
|
||
INSERT INTO freight.exchange_settings (id, fallback_rate, fallback_source, last_synced_at, updated_by_id, created_at, updated_at, deleted_at) VALUES ('d095c92e-01c4-4ad7-bfe0-782124a9c4b6', 162.416500, 'AUTO', NULL, NULL, '2026-08-05 07:31:09.389185+00', '2026-08-05 07:31:09.389185+00', NULL);
|
||
`,
|
||
priority_configs: `
|
||
INSERT INTO freight.priority_configs (id, type, label, currency, min_wagon_count, max_wagon_count, score_points, is_active, display_order, created_at, updated_at, deleted_at) VALUES ('56b3b5b4-e6f0-435c-b275-fe03cc6e100a', 'CUSTOMS', 'With customs 1–10 wagons', NULL, 1, 10, 7, true, 1, '2026-08-05 07:31:08.406818+00', '2026-08-05 07:31:08.406818+00', NULL);
|
||
INSERT INTO freight.priority_configs (id, type, label, currency, min_wagon_count, max_wagon_count, score_points, is_active, display_order, created_at, updated_at, deleted_at) VALUES ('79c1a2b1-e98f-4142-9093-56003d354f25', 'CUSTOMS', 'With customs 11–53 wagons', NULL, 11, 53, 15, true, 2, '2026-08-05 07:31:08.406818+00', '2026-08-05 07:31:08.406818+00', NULL);
|
||
`,
|
||
service_types: `
|
||
INSERT INTO freight.service_types (id, service_name, description, can_be_booked_alone, includes_first_mile, includes_last_mile, includes_customs, is_active, display_order, created_at, updated_at, deleted_at, code) VALUES ('c5913b29-579c-4d09-a701-c9e9f20c9770', 'Rail Transport Only', NULL, true, false, false, false, true, 1, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, 'RAIL');
|
||
`,
|
||
train_scheduling_global_rules: `
|
||
INSERT INTO freight.train_scheduling_global_rules (id, max_train_length_meters, max_train_weight_tons, max_wagons_per_train, max_20ft_container_weight_tons, max_20ft_pair_weight_diff_tons, created_at, updated_at, deleted_at, import_window_lead_days, export_booking_lead_hours, window_open_hour, window_duration_hours, doc_review_minutes, payment_window_minutes, window_close_hour, import_close_offset_minutes, export_close_offset_minutes, export_payment_window_minutes) VALUES ('bf410357-b2ce-4c29-bb8e-1e1d7d8806a7', 760.00, 3500.000, 53, 30.000, 10.000, '2026-08-05 07:31:05.884714+00', '2026-08-05 07:31:05.884714+00', NULL, 3, 24, 8, 3.0000, 30, 60, 17, NULL, NULL, 60);
|
||
`,
|
||
truck_types: `
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('f38f5b28-96a3-4e23-b238-2770a33da95a', 'TRUCK', 'Truck', NULL, true, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('5fad6cd6-3b75-4ec8-b6cf-475d7943662d', 'TRAILER', 'Trailer', NULL, true, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('4e78fe5f-3c17-403d-9872-5c210f314d13', 'TANKER', 'Tanker', NULL, true, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('c45f7bd3-0807-4243-a215-59d79d81bc31', 'FLATBED', 'Flatbed', NULL, true, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('00ca6ed9-068c-4ef5-88e3-ad50796ae2a2', 'VAN', 'Van', NULL, false, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('2a9b9d14-490b-4575-b6d6-c2a3bd5f03c7', 'CAR', 'Car', NULL, false, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('27d7481e-6545-4bb5-b72e-b39839e56ac3', 'BUS', 'Bus', NULL, false, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
INSERT INTO freight.truck_types (id, code, name, capacity_tons, has_trailer, description, is_active, created_at, updated_at, deleted_at) VALUES ('773c5365-1288-4999-b8b1-67d88f380e08', 'CASONI', 'Casoni (rigid, no trailer)', NULL, false, NULL, true, '2026-08-05 07:31:09.136545+00', '2026-08-05 07:31:09.136545+00', NULL);
|
||
`,
|
||
wagon_types: `
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('2bd636b7-3951-4164-a2c6-fe364a8110c0', 'NW7', 'Double deck sedan wagon', 22.000, 26.066, '{vehicles,sedan}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, NULL, 37.100, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('f7886975-ba6f-422d-8de4-e672c8482699', 'NW5', 'Flat wagon', 70.000, 13.966, '{container,steel,machinery}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, 1.300, 22.400, true, 30.480);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('ba981b9b-972e-4301-a857-aafbb35612e0', 'PW2', 'Box wagon', 70.000, 17.066, '{"general cargo","break bulk"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, 1.600, 25.200, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('9fe9a541-6245-4d25-b17d-68aa5f74dcf5', 'GW2', 'Tank wagon', 70.000, 12.228, '{liquid,fuel}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, NULL, 23.000, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('7b5d91ee-d36c-4383-a27b-3b65179d568d', 'CW4', 'Gondola covered wagon', 70.000, 13.976, '{"covered bulk cargo"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, 1.300, 24.800, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', 'CW3', 'Gondola open wagon', 70.000, 13.976, '{"open bulk cargo"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, 1.300, 23.400, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('20cd13b8-6992-4f9d-86ba-da6cfbbf2527', 'KW2', 'Hopper covered wagon', 69.000, 16.466, '{"bulk grains"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, 1.500, 25.200, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('02f1d786-e4c5-49a8-9e88-8d09f3e1a903', 'KW3', 'Hopper wagon open', 70.000, 14.400, '{coal,"bulk cargo"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, NULL, 24.000, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', 'NW6', 'Flat wagon (long)', 70.000, 18.560, '{"long cargo"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, NULL, 25.300, false, NULL);
|
||
INSERT INTO freight.wagon_types (id, code, name, capacity_tons, length_meters, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) VALUES ('efcee536-852b-4532-a6c6-bd2dd4f5e10e', 'BW1', 'Refrigerated wagon', 38.000, 21.996, '{"refrigerated cargo"}', true, '2026-08-05 07:31:05.293615+00', '2026-08-05 07:31:06.108196+00', NULL, NULL, 32.100, false, NULL);
|
||
`,
|
||
yards: `
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('ef184178-12ee-4657-a13b-aabce861912f', 'KALITY', 'Kality Rail Terminal', 'Ethiopia', true, 1, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('4aa63253-57a2-4ab1-a783-09eb501a08a9', 'MOJO', 'Mojo Dry Port', 'Ethiopia', true, 2, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('b2c4fc10-2a24-4898-82f9-0a81f2783c7a', 'DIRE_DAWA', 'Dire Dawa Yard', 'Ethiopia', true, 3, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('d99d1607-e0c1-4af2-9f21-a76b2ad493ac', 'DJIB_PORT', 'Djibouti Port Terminal', 'Djibouti', true, 4, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('d8aa7ef7-7ec6-44bf-8342-88aec811ac6a', 'NAGAD', 'Nagad Terminal, Djibouti', 'Djibouti', true, 5, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('f07a71e1-0631-4779-b160-42f01060ca29', 'LEGACY_ORIGIN', 'Legacy Origin', 'Ethiopia', true, 99, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('f6962f85-305e-4e90-9226-f6cc191cb8f7', 'LEGACY_DEST', 'Legacy Destination', 'Ethiopia', true, 100, '2026-08-05 07:31:04.600266+00', '2026-08-05 07:31:04.600266+00', NULL, false);
|
||
INSERT INTO freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at, has_facility) VALUES ('bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', 'DORALEH', 'Doraleh', 'Djibouti', true, 12, '2026-08-05 07:31:08.870506+00', '2026-08-05 07:31:08.870506+00', NULL, false);
|
||
`,
|
||
wagons: `
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('efceade8-da1c-4990-b3a4-af59e74a4de5', 'ER0001', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f087a26c-ac84-453c-8bb9-e54a8928bcc4', 'ER0002', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('04ec17f9-b396-433b-bee3-a82de0c16bed', 'ER0003', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c7c605fd-d6d3-437f-b93c-a646751b5f0f', 'ER0004', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('feda7bce-0c97-4af4-bebc-19e4273c4828', 'ER0005', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5b9065d8-566f-4f0e-a584-4ff1115f64aa', 'ER0220', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('843b1eb5-5eb9-493f-a3e3-5b88cedb6128', 'ER0222', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d21f91c9-ebe2-4dcb-95d8-0bcaed76ab34', 'ER0223', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('092a99b6-1b56-426e-82a1-e446d64a0408', 'ER0226', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a462dbdd-59bc-46bb-bb64-094aab773a62', 'ER0228', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('65b77a30-cb40-489c-b7fe-158c4b0aab94', 'ER0230', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('db500cb6-f7dd-46cb-a732-2cc0b9fa4501', 'ER0235', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1353b30e-117f-4449-b00a-8d45adcf0ab4', 'ER0237', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a67a8541-9258-4049-97a5-5708790c6dba', 'ER0238', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('46d60f75-eafe-45ca-a0a7-3fb819272d9d', 'ER0239', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a4231843-d2ed-45c3-a0e5-f9adb226302f', 'ER0240', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5a54156e-3c4c-4f63-86a1-fc26f0cf71b0', 'ER0241', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c17def2a-9c74-4800-a9c7-ef6170bc0e8d', 'ER0242', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('75dfb8ba-ebc3-41bc-a937-97868d2d6c3f', 'ER0244', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6117b8b2-f7b3-416b-8ec6-a832b610ee5c', 'ER0245', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7231acc8-c44a-4578-973a-793902f23f8f', 'ER0246', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6665c422-1ca2-4c69-9893-cb46fe86cb3b', 'ER0247', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('95fa646f-cebb-4160-adec-86c21675d765', 'ER0248', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d4581d3f-18e8-4bf0-9a76-799a309db932', 'ER0249', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6597927a-f846-437c-9652-18893dc269c0', 'ER0252', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ae81a93e-10f1-40c6-b3b9-965155532157', 'ER0253', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4af8534c-f937-478a-9618-512271dc3f3b', 'ER0255', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2ea47018-c73f-48e6-b2fa-967ef5fd58b2', 'ER0256', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('93d6f746-8843-4907-bc2e-d9afbfc60517', 'ER0258', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('09d84453-9408-423e-b4c3-94687b7e13cb', 'ER0260', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('200e08b2-fa95-4e42-b25e-dff0b00fd73a', 'ER0261', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d2da6f6d-c094-4a50-b168-fa2bc7dc6497', 'ER0265', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fe9b0f33-d994-4872-9109-355a04b046d4', 'ER0267', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('898578dd-67b6-4fd6-8fbf-fd1c00dce2d4', 'ER0269', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5e680d5b-73cf-4b53-9ba5-c8115d6597c8', 'ER0295', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b6195ff9-a4ff-4908-a76f-7b37ebd58e27', 'ER0296', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('25ab7769-d72c-4ab0-b131-5d32b76a7652', 'ER0297', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4f3aa099-255f-4826-ac67-842c13db0c5a', 'ER0299', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9370378b-4610-4b81-8279-6c28bc4eb2fd', 'ER0301', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('81a7e9fd-82d6-4ff3-b57c-f8227d2e042b', 'ER0302', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('938cab4e-f51c-42c9-94e0-9ebd7ae71500', 'ER0303', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('108b055b-5308-4363-8709-c4d1baa1cf50', 'ER0304', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('01f0e001-4b3b-4b79-96b8-dc7d2d3cc974', 'ER0305', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('47f81b2c-be78-41e8-872d-9b2560e43a1a', 'ER0308', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('191f88c9-64d7-4ff3-9bb1-159b6cd3993c', 'ER0309', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('971ab325-5bc5-4dc9-b1e3-f244b40f3772', 'ER0311', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('197ca87b-1234-4422-a8a3-1b8d3e25f768', 'ER0312', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('16882d5a-4a81-4d37-93b0-e8b092b5efbc', 'ER0370', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('687aca49-626b-4221-a85f-fb4ef261c60f', 'ER0371', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cb807103-d185-4b18-9dd6-e3c4652220f1', 'ER0372', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3ba691b3-59d5-41dc-8372-77bfa58df017', 'ER0373', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e0fee328-7f50-41f0-aed2-2983fae71a0f', 'ER0374', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6efc8d31-f013-4c8e-9d80-8ecb118feb67', 'ER0375', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ead00684-c1ff-4436-9ff4-5a1c6c226b9d', 'ER0376', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fe38f46c-5435-4264-8645-91c3787be639', 'ER0377', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d4274ca2-a77f-42b9-b46b-2600d434b1da', 'ER0378', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ab0f4ce0-ff11-48db-a460-453b367dd0da', 'ER0379', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('daa1e05c-5160-4a4c-87f5-386b1ae8f6e5', 'ER0380', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f2a9e2cd-5f50-4b43-8838-40dfd44e8577', 'ER0381', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4798ff1b-0b5b-4e85-a1b7-ded6467e7678', 'ER0382', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('47d7370e-1f52-4096-bcba-78e83331fc9b', 'ER0383', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('778a0b73-e81d-4c7a-a3ec-f2f1e720deed', 'ER0384', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a47a9170-810b-41c7-a62d-5033df3af1fb', 'ER0385', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d0a2a138-be52-4546-ac1c-76b85e7b8af8', 'ER0386', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9917a998-e75f-4a2c-85ca-4221c286bbc7', 'ER0387', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('731e07f9-ab01-4b06-9f8f-28db7815e1a8', 'ER0388', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d5333661-a46d-4568-a183-2535fcf28c5f', 'ER0389', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6cd0288f-08d1-433f-85e4-6014b9927586', 'ER0390', '02f1d786-e4c5-49a8-9e88-8d09f3e1a903', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fe9002ef-4073-4624-ab2a-1638b117caf0', 'ER0401', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('35925577-66ab-4cb3-86e9-66a6cfaeab5b', 'ER0426', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d67a08fb-e3f3-4d0c-aafd-bae17640133b', 'ER0427', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1a15874a-4776-4729-87ab-927ccbaede70', 'ER0438', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8ec6681f-6d82-4f95-84ac-f8c4cc85e440', 'ER0439', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1828d437-9d34-4141-8d8b-9b381bbac55a', 'ER0457', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8dbea1a0-8c04-4387-9431-f031c00411b3', 'ER0472', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('65089613-a418-44b6-835c-15cd66e0c299', 'ER0482', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('77286c81-bd2a-4a45-abef-0134249269c0', 'ER0493', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3f34e798-2a95-438d-ab82-e31d460cd885', 'ER0495', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a8791b74-a567-4003-9858-319dc53adc19', 'ER0509', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('386d99ff-459b-492f-8b78-59cda4227b4a', 'ER0510', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('99a6eb73-d7b2-4aae-891e-30738143d99f', 'ER0523', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('eca6f4fb-3096-4e11-b444-ccd3df4b8b89', 'ER0532', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8566f603-592c-457c-83a0-2370074d1a40', 'ER0534', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c6b5e39b-106f-4241-ab38-29d7a62a6db8', 'ER0535', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0ff382b7-952d-46f6-a630-040daec1af24', 'ER0543', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c767da8a-638f-43db-9065-e33d558b4504', 'ER0549', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c210de55-b995-4ce1-bb55-fbb8d71f82d7', 'ER0579', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7ed8b8b8-74fe-4ac1-a7c3-41cf0fe75282', 'ER0581', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9f896f23-0527-4a86-8400-d2881409c721', 'ER0586', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('96d0767c-050e-40ae-8aff-7b66a0b717c8', 'ER0595', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('118a28cd-3309-45b7-b5fc-78dc8b6018e3', 'ER0604', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f7120939-932d-4de5-9212-b4590d163eb6', 'ER0609', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2fe4bf7f-4d09-4997-a894-5e2404f90207', 'ER0611', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('58622396-b1e0-420a-a369-72e1e21465fe', 'ER0632', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4c6746fc-2a3e-45af-b5f4-25ba4026757d', 'ER0639', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('68842cde-2cc7-408b-94ee-2723c0e3ba51', 'ER0657', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('65c7159d-d0c4-4134-9d8f-65164f91aaf6', 'ER0687', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5e8d0e19-08b9-4149-afed-87989cc63587', 'ER0688', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fdfdcdc5-524b-49a1-af38-2eaf3aac0bd1', 'ER0690', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('66c38cf9-26f9-4d53-96df-e7368ca3b29a', 'ER0696', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8c62e85c-dec3-4966-8815-b941822766c9', 'ER0701', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bd6a8ed1-a7ac-4bcd-8189-4866d6e41812', 'ER0708', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bb66f97c-eb52-441b-ac54-b86f4107da0e', 'ER0709', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('46ed9baf-1a6b-49ee-a318-37662e5a46ab', 'ER0710', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9319c6b6-df6b-4731-9bc5-17a0d15e29aa', 'ER0719', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('24e52947-9665-4ab1-99ed-2e6a2c21285e', 'ER0721', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b0f4aee1-3b2a-4bc2-8d00-a8a7f3e1c104', 'ER0722', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ca7aca7-bad6-40fd-b935-2b22d6953f56', 'ER0727', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8349164a-3138-4791-a7bd-6608115072fa', 'ER0731', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a84261d8-3a7c-4ea8-b4e7-5644f00a1485', 'ER0742', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('603c83b4-f8fa-4886-8ae2-b451a974146f', 'ER0745', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0946cfd4-6b82-4f74-8af7-eaf94f60ff93', 'ER0750', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('07ed91db-0975-40c8-92b5-fdcf0dcdc187', 'ER0757', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0ff14a93-438f-4fc9-a30a-cdfbc418240d', 'ER0773', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c3424af3-0228-4933-9824-a4dd334c7b6e', 'ER0779', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b6d617bf-13b9-47ea-9651-a0194cd33ade', 'ER0783', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ffe576b-1548-48cb-b95b-95fdfd8e3fca', 'ER0792', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('80e0df88-e536-4212-bbad-59422a3a7baf', 'ER0793', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3d25dd34-92a9-41c2-9bec-6e57ade1f91c', 'ER0813', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('209cede5-60c9-4518-bd34-a7a14c73fe92', 'ER0817', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('115be47f-b66d-4754-9cea-f548ae13669d', 'ER0828', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dc7f0316-22e8-42ae-a973-0fafb2963947', 'ER0829', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5cd52b73-f604-47aa-bc0b-7f1c0b346de6', 'ER0834', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7191777c-7e93-43ee-801d-0f03ee8d93d6', 'ER0848', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8de34884-3cbe-44e3-87e2-82920e9eda66', 'ER0856', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fd677c07-3cfb-4725-bef4-5a6bb51aa965', 'ER0860', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1552469c-786a-441a-a9a5-2b6c8835526e', 'ER0862', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('421cedae-de56-455a-b657-cb372a02a716', 'ER0867', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f8dd2362-8cc2-4801-aa3c-9a74fcb60785', 'ER0869', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4b99149a-1d00-4c78-827f-1f8cb1da56c2', 'ER0871', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bb326a6f-8fac-4d0f-9018-ee2b70d1b6ba', 'ER0875', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c3038cee-05b2-4749-b643-4bf1fd1468d2', 'ER0892', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a67f0c02-e4a7-40ac-8391-f591d8ad4c14', 'ER0931', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ab052975-5b46-41ca-b0a9-7129e5547e14', 'ER0932', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e69db4d2-72f5-40d1-88e6-ff49f980b11f', 'ER0938', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('16899bf0-1de4-4e2d-8f3f-698ba0c8c166', 'ER0941', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('09426b78-7102-4e62-b9cd-87c856e91c76', 'ER0942', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('73949863-70ec-413f-8d7c-d36f823b893e', 'ER0943', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b3125715-ac8a-4991-9008-22b138ea9347', 'ER0944', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('13801ab0-008c-4703-b0f6-352549395ec8', 'ER0945', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3b684e22-05bc-47ae-9de7-a215d9665928', 'ER0946', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('481de8fb-4a6d-4342-adff-41a80ff40486', 'ER0947', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f70ef069-e6ab-4228-9de0-28ed2cfe347c', 'ER0948', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d0db2798-fcfa-455d-90ba-9127eacd4948', 'ER0949', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2af890c0-5d36-47f1-a8db-f7daaec14d16', 'ER0950', 'efcee536-852b-4532-a6c6-bd2dd4f5e10e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('600984af-0ca5-4698-9bfc-1f79429ec45d', 'ER0951', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f17ae313-86d7-4144-abd3-9c9aa598d095', 'ER0952', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5ec4629f-958f-4f8b-9c3c-6ca4f855f237', 'ER0953', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2e8d4acc-2da4-4b51-ad26-4037d36e01be', 'ER0954', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bf29c94a-1d74-48a4-a018-2c8874ba2b0c', 'ER0955', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c0bed9de-b81b-428f-9ae2-f3b8b78c7423', 'ER0956', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('40e20038-34e3-47b9-b848-22c43cf33f05', 'ER0957', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8d6157d2-5e15-4798-a349-3c74317e86b1', 'ER0958', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e80818c0-cf2d-4bd5-9f9a-79c048ac6934', 'ER0959', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d4cbefd6-7b32-4784-aa57-7194baaacd9a', 'ER0960', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('255bc431-8eef-4480-afaf-19f0f85a5250', 'ER0961', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3db764c7-ec43-4e3b-adc4-800d1bc6fd8c', 'ER0962', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('85f4d239-7dba-42aa-8059-4d40f48ac325', 'ER0963', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('19abb8bf-30dd-4004-abde-d9029246a623', 'ER0964', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0e334a57-668f-42e6-a6ed-25a0dd10f55b', 'ER0965', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ba362c78-2a8c-47ae-85bf-83daa770d357', 'ER0966', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2d235929-bb5b-4204-aba3-aa4413115043', 'ER0967', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d24e0168-688a-4f8c-9e24-6068c23664be', 'ER0968', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3cc124d3-1aff-4ca3-bf24-ad0d62cb881d', 'ER0969', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4a1db9e4-0fd0-458a-bfe7-8b450b85d654', 'ER0006', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('29533a21-fb3a-4399-8e90-7261b625a802', 'ER0007', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('13030dac-eb8d-41e6-a4a6-dbd5ca6f2575', 'ER0008', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9387846e-7952-435f-977e-a4d19760788f', 'ER0009', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f09fc4a0-9110-49e5-be90-f5f12d2cd1f7', 'ER0010', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('93941159-85af-439f-a8ca-03c616b5ae82', 'ER0011', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3e7574c3-2010-4b2e-b7dc-7e5e46be672f', 'ER0012', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b3893de5-096d-45d5-90b3-4d21b2eaff52', 'ER0013', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('82ebe4f6-1dd9-4b1e-bce2-53737bd39046', 'ER0014', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e23ddf96-690a-4d9a-b5cb-e677f1258c0f', 'ER0015', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cf4bea71-b8f3-49ae-8aa6-99759f83c96b', 'ER0016', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3b773879-0019-46cd-9d88-a86c0e783920', 'ER0017', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f32caed5-22e4-4ad7-b7bf-e4d2c7b58452', 'ER0018', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('03d4dd21-30c1-43ad-8ee6-9e80f76cbe5f', 'ER0019', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bcb6661a-7e2d-4619-9d35-60b1f87390b5', 'ER0020', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('36699e6f-c80d-42c6-a8e2-34416bafac4b', 'ER0021', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('45cb0daf-5635-4e8e-81bc-eb57a8ee31f9', 'ER0022', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9908a1e4-4ac9-4339-bf15-d718c0e4c1bf', 'ER0023', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c6ea8c9a-f7d9-4b3b-9c19-3efe66a99c5b', 'ER0024', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('082b3472-b360-4b6e-9eba-70bef8272791', 'ER0025', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('61cad62b-368d-4937-828b-09ba9d8875fa', 'ER0026', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0583627c-94f5-440b-b7d4-2e24ca9762ed', 'ER0027', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a4d31ece-005e-4ec5-87c0-0e0de97ca7ad', 'ER0028', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('11144213-f8a5-45d2-8d9c-2c1bc978a82e', 'ER0029', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('31b55af2-5b11-4952-9d07-078104ebeaac', 'ER0030', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dc8fb0cf-1270-4784-8784-c85e4736e2b1', 'ER0031', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('25a9a57f-2338-4618-96fa-a1e56e442de7', 'ER0032', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a0942973-f0e8-4302-bffa-a821f23b4d54', 'ER0033', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('92f2c3e3-6a28-4933-9dca-a43e60116fe7', 'ER0034', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5a515a3c-73ca-4745-9e30-c5d962e373a1', 'ER0035', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4666e2db-f7c1-426a-a904-43052a876596', 'ER0036', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fd040b14-77ac-4772-88df-0a27dcfa6576', 'ER0037', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e7af13a2-2035-413b-8fe4-eab77193bdba', 'ER0038', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c144db12-9310-40f1-a876-3137fa1a8fa4', 'ER0039', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5523adee-261e-4a23-8e12-ebceb1009861', 'ER0040', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bd4d177c-99a3-4a4e-ab0d-bb4e64fe7aa2', 'ER0041', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9789b41a-4fec-45a6-a921-253fbc0f5e00', 'ER0042', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1d2f7268-2806-4ed3-8c9b-88b86a08e3bb', 'ER0043', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fbce9f69-8122-458e-915f-92a7196a74f4', 'ER0044', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca40e343-c2b0-4d42-b1b2-d878dacee532', 'ER0045', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7838d70c-6780-449f-890d-43e016e86330', 'ER0046', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5eaae9e6-4038-4c7c-a54f-ea71290b45ae', 'ER0047', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8096a852-e1e5-49cd-8780-ef290fbff727', 'ER0048', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bd0c82dd-59a9-4d7b-8b39-c1a832cc9a53', 'ER0049', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('91644b7d-11fd-477e-b6cc-e558b29efacd', 'ER0050', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4f65b024-d98c-4c31-bcca-eadcf9c7a253', 'ER0051', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e28a8739-35b5-42b0-89e6-f52feef60f58', 'ER0052', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e9bdc4b9-8cc3-42bc-b9ac-41b1b14fe713', 'ER0053', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f9dd65c4-1b9c-4ee1-beff-328a8ba75b43', 'ER0054', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7ee755a2-297d-4a52-84fb-88bc55dd79f1', 'ER0055', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f79bd22d-3a3d-4bb7-932b-8c650fd0b7e5', 'ER0056', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('34ddabc2-a98d-4798-94e2-8c5cefb44ad8', 'ER0057', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cf0bbe40-b70b-4e41-8c70-2cba03059661', 'ER0058', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('25335eba-c84a-4f33-b42f-8b8edf5cad1a', 'ER0059', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca1821bd-03fc-40b9-a25b-cdbfd065746b', 'ER0060', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9edffff5-691f-4d4b-b2ab-ced742d944a8', 'ER0061', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8918bfdd-4a54-4ea0-b62b-adf786c0012a', 'ER0062', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('de5d64ac-980e-4ec4-9535-d6f3e308b97f', 'ER0063', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('609e75f9-82ce-447d-a729-087117659383', 'ER0064', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('66bd4bf8-4d80-45ce-9d28-bd822e1e4c20', 'ER0065', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('01ab0fb9-f2da-4a65-b74e-2ffb70df7b22', 'ER0066', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c687f152-0680-4ed1-b650-e3591ceafa37', 'ER0067', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a3ca1605-05ab-43eb-b4c5-8b45b0ba5ed1', 'ER0068', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f2f1f255-8406-423a-a127-6172ed515759', 'ER0069', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('01018755-ee54-4937-8093-e8c9f08a0531', 'ER0070', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('031c8d2c-f82f-49fd-b253-30938749038b', 'ER0071', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6ff0dbdc-950e-4e8f-9c27-79c959212cff', 'ER0072', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c278e04-c0e2-4ea5-817a-7bf51f28575d', 'ER0073', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c70b4928-7639-4498-9930-9ec2df6e8239', 'ER0074', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cd3c9e82-d861-4ba2-947b-32f7ad6ea84a', 'ER0075', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cc2ed6a7-6af2-4398-ab2a-4469bcfc8d09', 'ER0076', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cfeeb680-1fd7-4395-aab8-ee09ab40ef55', 'ER0077', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ea042b6f-a767-4dbf-be81-bbd3f5b504cb', 'ER0078', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('15c2cb66-21b3-4ad3-8984-5dc601cea9f8', 'ER0079', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1b9e5ec1-07a9-4e45-8bb6-9802dcb5f838', 'ER0080', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('094ea7d1-13dd-4447-a439-4013fc190d08', 'ER0081', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a0dadba3-50f5-4e84-ad0b-9da188f473c7', 'ER0082', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2e22c46d-b770-4670-9ee5-52a6bf0f6ec9', 'ER0083', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('813acf62-dbae-4c3e-b455-e5013a672412', 'ER0084', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e3adfe38-d991-4e99-a57d-61008b0a128d', 'ER0085', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7cf5cc8d-c448-4470-8c3f-8ba058305786', 'ER0086', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('89e28e6a-dd14-4c54-ae1d-ae14b5ab4909', 'ER0087', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('21defb90-af54-4f15-8162-5917edb28d0b', 'ER0088', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c6a31dc6-461e-4f56-b297-410898a9d868', 'ER0089', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('312a751d-13cc-4af9-abf8-ca23fa48ce12', 'ER0090', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('30fcd00a-1791-4099-842c-e78080cd115f', 'ER0091', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('33f3802c-157f-41b2-988b-54f059921d85', 'ER0092', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a8d7cfaf-245f-417e-b3d7-dee3083d6fdf', 'ER0093', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0f95499c-3880-4446-8f76-8a58ab906138', 'ER0094', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b4e883d4-0c74-4d0b-8ad3-2f5cf8f52ee0', 'ER0095', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('11975e34-284a-46c5-802d-9d35ce5e2712', 'ER0096', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('28d7a0f5-d2f1-443e-9f07-916923b28cd3', 'ER0097', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b2177901-e5fa-4b20-9d02-a0a2d42c4b44', 'ER0098', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3948f1ba-c5c3-40a8-94b1-41c7dd5330d7', 'ER0099', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('05e32a38-e115-4cd5-83b4-737e98d80116', 'ER0100', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7c85b7a1-1478-4820-bfa5-2846d05d45c7', 'ER0101', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1f62d884-427b-4e35-8637-4dc9e88aed50', 'ER0102', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('63e51c94-6188-4475-bfba-7e093b6d832d', 'ER0103', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c6e3254e-10aa-4546-8172-0570353819ad', 'ER0104', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d10a5010-ae63-4b06-bc1c-36b52a4270cd', 'ER0105', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d0fed052-881a-4bcd-91c6-306816c9a4b4', 'ER0106', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('de4d4d24-9f34-435a-bbf5-cf66cfb74443', 'ER0107', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('804f33fe-39ae-4475-be4f-b154252df8bc', 'ER0108', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b652f660-b5a7-457b-9a34-c029e07f672b', 'ER0109', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('58db2ca5-4dab-4adf-94ed-ca9ffc9bf117', 'ER0110', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ef921e85-659e-4c07-b1fc-f8f9ef2f414f', 'ER0111', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('542ff206-1f14-4ee2-ac6b-59217ac5e951', 'ER0112', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8b9e06a6-6f4f-4a89-babf-d8e7d3e603e5', 'ER0113', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c5e6278d-ab0c-4fa9-a1a9-97ab895d200b', 'ER0114', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('46f0bf81-8df9-47a3-ab8a-b2992418453c', 'ER0115', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c9f80b53-60de-4627-8772-11735499baee', 'ER0116', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('800e7511-9ca4-4505-aad1-8a60179aa459', 'ER0117', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('88e0ebac-f05a-476a-bf06-2898256fa000', 'ER0118', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ccd4ef12-70d4-4681-8bc9-6063f27e7698', 'ER0119', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bbeb1539-e049-4032-b2ff-6351157021a4', 'ER0120', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('30ab10e8-ff91-4bac-a399-abeaa0ba9b49', 'ER0121', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9a618481-ad8a-4a8c-9c8f-e5e9493ce5e1', 'ER0122', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('086774b9-56fe-4b49-ab45-adc881ce417d', 'ER0123', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d967cb96-3b8c-4b57-b83f-b6cc7b31d46d', 'ER0124', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ee872a5e-a6d7-40dc-a572-7f96deeea321', 'ER0125', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f2a2e0ef-5434-455c-8322-1ee061187cd6', 'ER0126', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('38d9618e-e138-4fe0-9d6d-1963939a16d0', 'ER0127', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cc18fa46-8ce3-4472-b20f-7fbe61f72a3e', 'ER0128', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b4d756f8-4d7c-4249-8320-abd23e353cb6', 'ER0129', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8a308a64-aea5-4d57-827f-dfa576140bf3', 'ER0130', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a461b3c1-177f-4cfd-b8cc-8703221c2259', 'ER0131', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8c1aecbb-aced-49da-a3f1-91fe5117c6de', 'ER0132', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('88dd1f41-c224-4e7f-9b65-d5acc4262dab', 'ER0133', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b17533fc-80df-4008-8d8e-6bcda46c02e1', 'ER0134', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b5a832e3-e6ab-4c6b-8e91-72be3bab307e', 'ER0135', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c151db62-50af-425e-9ab7-0b8972c24bb3', 'ER0136', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('910c3b2e-d66c-4533-98fd-814af79bd36b', 'ER0137', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a337a147-9520-4b4c-8bb1-01de893e0a05', 'ER0138', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7f5245dd-026d-451a-9102-ab7ecd30aa2c', 'ER0139', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2314b085-8e6f-4d5a-a59e-84a9c92c603b', 'ER0140', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fd96d263-86b2-43bc-97c6-de54a595ab87', 'ER0141', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('248ba5bf-6a62-4958-8877-3c44932510aa', 'ER0142', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a65d0ec3-a660-4eb5-8109-cb5940fca939', 'ER0143', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('def6c5b3-1d71-4519-bd43-b5ce477e9b31', 'ER0144', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('309cc736-1e8d-4d43-a241-c77a772acbc8', 'ER0145', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e32c1c41-3f8b-48e4-9b66-bb912af456c4', 'ER0146', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('51a39d5d-e07c-4b5b-95aa-07c61707973a', 'ER0147', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9d024616-3e25-46cf-ad39-b6d2ca5e7667', 'ER0148', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f95a9219-de6e-4186-9d53-6d7013581049', 'ER0149', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('340f1b07-d7d9-47c6-897c-aa32f7509ee2', 'ER0150', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('475e774c-1c1b-464e-acc5-ad08936eed59', 'ER0151', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3a0298cc-5299-4028-ae21-8fc0d9ba0def', 'ER0152', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8be287d9-3a80-4c83-9e07-984ea146238c', 'ER0153', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('07ec6bb9-a41f-43ac-9ca5-9d436e042138', 'ER0154', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5970e954-dade-4c7f-8437-29848382465b', 'ER0155', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca009387-08b8-4a97-8654-32faf0475ef5', 'ER0156', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6690e811-c449-4857-b1ca-4bce7a3548e2', 'ER0157', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('80bbb133-9997-4edc-a4cd-9f2b0b0a07ee', 'ER0158', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('985844aa-9c51-4aad-a47b-a09234c12ef2', 'ER0159', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('23659776-def6-400f-a8e2-77a29bf73239', 'ER0160', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('40c2e6cd-5f26-4589-8aea-4202c40b15c1', 'ER0161', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9afd795d-b0a1-4645-9759-65a5e90e05d8', 'ER0162', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('93fe5fdb-266d-4679-9c40-92667b385a2d', 'ER0163', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('278b60d1-6561-4459-a403-34b431673cf0', 'ER0164', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('923e947a-1a17-4c3a-8014-53d139706913', 'ER0165', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('33de1811-8dfd-4dcb-ac94-b1c64529d7ea', 'ER0166', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8195958b-6a19-4560-ac06-e2abe1282f4d', 'ER0167', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e8481e2f-ff52-41db-af7d-b1cde9aad4e0', 'ER0168', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('610eef4d-d58f-4f69-abfb-5cad2c9e6d04', 'ER0169', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('95724265-7a53-4ecd-84bc-e2ae8055c495', 'ER0170', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ada828a9-83eb-46f0-99a2-0983db19ca90', 'ER0171', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6f2defbd-468d-4308-9bf0-25c1a6da0b48', 'ER0172', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e43ab168-18f0-4b19-8210-806a4230ce4c', 'ER0173', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0fce64c5-84d4-4ea3-a26d-62051c741c27', 'ER0174', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f1b83abb-1037-4a4f-a041-69e199c7900d', 'ER0175', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('abb65568-fe17-4c6f-b6f5-d144a7d45f9a', 'ER0176', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f0f3c747-3abe-48b3-8669-1ed643eb47d7', 'ER0177', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e18d852a-ced4-45d9-82f6-9d252fdffe1d', 'ER0178', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1e3d9c1a-b18e-4862-a7ed-8b673dcafa88', 'ER0179', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('54454191-ecba-454f-aa15-8534f6ea51c4', 'ER0180', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('52193246-3094-499a-baca-34b459c6867a', 'ER0181', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ff2cfd0d-bbdc-42ce-a794-988cd053f8f6', 'ER0182', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5cfc39cb-a35c-4b42-9e90-2b8739bf690e', 'ER0183', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1d27e565-7595-4701-9b7d-4acd51c243a4', 'ER0184', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8aa4b74a-9383-4c5e-adb3-6fe1db136314', 'ER0185', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d41987d0-66a0-4334-8101-761a7edbd9ab', 'ER0186', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1b8e0441-ebaa-4dd6-9701-4bd136114176', 'ER0187', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6371df15-04cd-4817-b57a-bb113704c475', 'ER0188', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cad85ec2-2316-468b-83ef-898d5a9aa403', 'ER0189', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6aaf21f4-18ac-48dd-ade8-dbd2f2f2325b', 'ER0190', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('55a50468-d591-4ddb-ab9d-9d502f1c5a19', 'ER0191', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('82628805-484c-43fd-b8a2-2efe1ad00cf4', 'ER0192', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('744f36d7-3507-414d-8374-f5c6a12cc609', 'ER0193', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b81d459c-8ab4-4b83-b47b-4c6a4337ab0b', 'ER0194', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1513a30f-cc55-46b2-be05-a7d87f3e2c44', 'ER0195', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3c503d76-15ae-4ae2-9e71-6b69f38ab082', 'ER0196', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('32d0830b-041f-4611-98ec-4180b039fe4e', 'ER0197', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('746f5f66-8ffb-4006-83eb-c5603375eb2d', 'ER0198', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('723a5f58-874b-401f-b1a5-9fb9575795d8', 'ER0199', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9d16b293-e86c-4a30-8228-647b5052cf72', 'ER0200', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8755cdd1-4ea2-4814-b468-6d1c8a1d8a8e', 'ER0201', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5438749e-2554-4931-b97f-90ae2c12d148', 'ER0202', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6fd9cf36-62e7-4581-86e6-b90227a1becd', 'ER0203', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('87e86711-64e1-4f85-bb75-a83e399d5c81', 'ER0204', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a97ac69f-41cf-48b8-9f8b-8198bb446bb1', 'ER0205', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f0a515b9-1fa4-4bd7-9bbe-b8684c93f095', 'ER0206', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c09c3a9-c313-4bb5-86e4-856bd4634ee0', 'ER0207', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1cf55023-a30a-4406-ae6b-cd7a332ca2aa', 'ER0208', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a6a42d43-187d-45cb-8101-0e3feb1f7152', 'ER0209', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('63345e78-5040-44f0-87a8-800b5bff5bb9', 'ER0210', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0a571466-4138-4461-a2be-cb4924d6c8ac', 'ER0211', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9a8a587e-265d-4a48-a0d4-347ac08334a2', 'ER0212', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4cc2aef5-d99d-4066-ab44-e0c856731acd', 'ER0213', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e999cd2b-ebe5-45b9-b65f-fca6b084161a', 'ER0214', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c835a849-95cb-42dd-93bd-cc7a4d37cb7f', 'ER0215', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c0a794be-9afd-44de-a79c-935531514283', 'ER0216', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4f547c30-5333-44d1-8f12-cbc1242714d6', 'ER0217', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('31a051ff-024f-425d-a09a-d2c971f8f9d9', 'ER0218', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ac332250-3ecc-4bf9-aedf-27f7e9757618', 'ER0219', 'ba981b9b-972e-4301-a857-aafbb35612e0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e8bc8fec-d681-464e-98c8-1b942a1824e9', 'ER0272', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('86b8e939-55cc-4fdf-8ef6-4ef2d8ba6eb7', 'ER0273', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0ab894e4-92aa-4e4d-aec6-0fc7af24dda1', 'ER0277', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d2c57e15-2a37-43ef-afc9-6cfb28525042', 'ER0278', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c706702f-8701-4074-a199-95700962c124', 'ER0279', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8ff793a3-276c-4c2e-9117-57fc69f31c6f', 'ER0280', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b9444e2a-8f50-4981-8d46-e3a35d8c631b', 'ER0281', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4b051af8-9ef5-412d-874d-35923c9015c4', 'ER0283', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6dafaff2-f848-42d4-bded-2c2c9111e705', 'ER0284', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('39070353-0374-4147-8ed2-4ee2533e67d8', 'ER0286', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b59ce268-2eb9-465f-87e3-bc152c926838', 'ER0288', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('66aabe5b-f187-42de-ba5e-1bb4b74f9961', 'ER0290', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('65da8564-6072-4fc3-8bd1-9b931c67ff3b', 'ER0317', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a4389a81-89ff-4134-83e7-34b57acbac70', 'ER0318', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('38d1fb88-cc3c-4492-a947-019687516be2', 'ER0319', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d391172c-8b85-4e6c-87f3-0332b6fdeba1', 'ER0320', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cbeb9882-0b1d-4593-ad44-6816ceedc2a8', 'ER0321', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8123eeb6-418b-429f-9012-7e7c39714b7c', 'ER0323', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('16221585-3a0b-4ef9-9b89-d4e71a330b80', 'ER0324', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('665691e8-8462-49f3-b6e8-1504f2791ac9', 'ER0325', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c0662921-fd6b-4491-8846-2113190425f2', 'ER0326', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e29a542a-bd26-4731-8685-3c5d817e913c', 'ER0328', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d34d8447-67a1-4987-a9f2-4cc491d4ed0f', 'ER0329', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b0d4bb17-074a-4652-99ba-9db75ad837cf', 'ER0330', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('837acb7a-d6ac-49ba-8459-9ffef83156c5', 'ER0331', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('94c5abb8-8eb8-4bfd-9f4f-74fe432f4647', 'ER0332', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e9c37ca6-d031-451e-a0e5-fa1356836cd1', 'ER0334', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d81d8984-3817-4460-b4f9-1ab485e16fe7', 'ER0335', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('487de4ad-002b-4035-866d-2dee3f02aadb', 'ER0336', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('712714fd-8575-40ff-aaff-39dd576c945c', 'ER0338', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('aa534cb5-f9bd-45a2-8d06-2f428d191a73', 'ER0339', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('78da6b5d-ae44-4860-9bad-1f5cfe7eca05', 'ER0340', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('53a9df1a-959f-462d-88bd-6c9848f8cd02', 'ER0341', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0e0faa9d-2005-484c-95d6-ccaa3eb7d403', 'ER0342', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7752733b-c6f7-4924-a056-94135dc92f95', 'ER0343', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b396bf14-5faa-4eaa-94f5-fa5b2b2342da', 'ER0345', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('51f55228-bb29-4e8a-8537-f3528870b5a0', 'ER0346', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('34a26c46-11ef-41ee-af28-4dbf26161258', 'ER0347', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ac0e6790-937d-42b1-92ac-eae81b5431a1', 'ER0350', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b1f665f5-091f-4c73-b23a-de9e447abd8e', 'ER0351', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8b25754a-5e1c-421b-aa44-ca0e9746a371', 'ER0352', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a9d81346-6a5c-4977-a13b-775869af5c7f', 'ER0353', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bc2a9f22-8803-42eb-a5ff-2ed0c5582b67', 'ER0354', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('060253d2-961d-40a5-8e83-46051f533f90', 'ER0355', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3366ae38-a3f9-4b0f-a676-9122f4803ab5', 'ER0356', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9497b230-5583-4e12-893b-b37011da18fb', 'ER0357', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3e8d7ce1-235a-4258-bf53-7944c249fe28', 'ER0358', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4b014804-373f-44ee-b06a-29de5f885ecc', 'ER0359', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1c830dcf-b53f-411a-9cfd-64f1baf54c84', 'ER0360', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cde6b81a-b795-4c0f-aa54-2ad591ec1208', 'ER0361', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a0360b8e-a650-4ae7-ae1b-9621f838c2d8', 'ER0362', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2517d347-3a1c-4e12-9093-0b77143800af', 'ER0363', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5c306923-7bcf-4f6c-be5a-fdbc9078da68', 'ER0364', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b7eb0612-f02e-4fc6-ac72-c6ae3333f6ec', 'ER0365', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9578e319-9794-412f-8ece-ccf6b445de61', 'ER0366', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fe13dbbc-15b3-4c20-914f-f1df1bd72ad4', 'ER0367', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f6af7816-e6b1-42c8-a2e8-c418d70fd2fc', 'ER0368', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('87a785d0-0713-4796-8f1a-ae5c8f7c2a35', 'ER0369', '20cd13b8-6992-4f9d-86ba-da6cfbbf2527', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0feed691-4a62-40fc-b091-161ba3e668e3', 'ER0970', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e8d6879e-2cae-4444-bd3b-db95d20414db', 'ER0971', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('159e1d22-4d07-4fcd-ac92-d24a3ffd709a', 'ER0972', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('295698c1-f249-4499-bb12-ac103e689e50', 'ER0973', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d9a00691-0f4f-4fff-86f2-afa9c13c98c2', 'ER0974', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3f519548-1779-4bde-8af6-d62286db616d', 'ER0975', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a1c7f44e-d6bc-403f-b75d-b46177e13a4e', 'ER0976', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1f8f3a2b-76ed-4d72-a6cc-2742ea2b2498', 'ER0977', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8a989154-3b29-454a-b08f-62d7ab0d1e97', 'ER0978', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ec340e3-57f8-463c-92f1-6de40944fc6f', 'ER0979', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('68328ea0-4164-45ea-8dce-fd3c3b2213ae', 'ER0980', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5720c652-431b-4399-9fdd-6fb55dfe1658', 'ER0981', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6e88adfc-75b5-45fc-b6dc-d3cee0122233', 'ER0982', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('30642847-f45b-4648-b7c6-4e43236e5af7', 'ER0983', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('45585c0e-9de1-4ba1-8e3d-6997bff8c715', 'ER0984', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('90da9164-d2cf-4622-8b09-343d8428d8d7', 'ER0985', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8a248a3a-c44d-4c1a-9b0b-e35b077a68b8', 'ER0986', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('95c37ce3-030b-4c08-b6ee-cc3dbde3c728', 'ER0987', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('590f361c-7538-44fa-85ba-0541920de462', 'ER0988', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7ced7ebb-3a38-48f1-bc99-444179b860d1', 'ER0989', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0a963d36-88e3-47c9-8da7-b9bc05d55d1c', 'ER0990', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e2f146b6-53c1-4437-a540-dd5cf4ee21d5', 'ER0991', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a0f61e5a-d883-422e-8a59-3558e1288e22', 'ER0992', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('19ee51d4-213b-45b0-bfd2-ec48e5e00f64', 'ER0993', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3b4fe7b8-5f30-4942-add4-5e58d852ce42', 'ER0994', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cf955d1b-ba00-4b54-a6ff-cacb9c9e3998', 'ER0995', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('383c798b-ef3f-491c-9be8-e06e7cf02ced', 'ER0996', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f90db5da-8236-488d-9f84-d3ad2d70d13c', 'ER0997', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2342fc04-768b-42c1-85d0-1d7a11179eae', 'ER0998', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('083b1a08-4724-4bc1-8f42-56d2d903d9b7', 'ER0999', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8c812b23-a593-4e5b-90f0-29ec9d3f1e19', 'ER1000', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6474629e-c5e3-41ac-83ec-0973f1878584', 'ER1001', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d7bad221-aec2-4110-9efe-565978e9f78b', 'ER1002', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fc6a80cf-6513-4b5c-8a32-43fefe3a6a5a', 'ER1003', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3c1cc41e-2302-4640-9e9e-b79b724d6ee5', 'ER1004', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b8329eca-41b7-4662-a6ef-41e5169ec6c4', 'ER1005', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4a0c027a-1072-4b2a-83da-ecb60ed48567', 'ER1006', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('be475678-d27c-480b-b889-e7c553ef0442', 'ER1007', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('95ba8ebd-731d-417b-982d-5dd783d7133b', 'ER1008', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9cbe79e6-a9a5-4039-a2e4-c5ef9473a1d4', 'ER1009', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('479dbd14-a02d-4ff4-8668-a09b3af575cf', 'ER1010', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('086e4cbf-622b-41da-bae7-8edd920a2881', 'ER1011', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4c43ecbe-b196-43ff-9ecb-0b978bcbdbe6', 'ER1012', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d178148e-d5ec-479f-aa53-03886d48ad50', 'ER1013', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('40d8a4a0-e00f-4cc3-b588-6161d2b1d539', 'ER1014', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('03be9a2c-89eb-40af-a74c-f8bb177c5f5c', 'ER1015', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ec0e58c-bdeb-4d08-8fcc-2eed5816ee29', 'ER1016', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d408d9bc-2bcc-4190-8c37-1a3e83dd5dd2', 'ER1017', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a2fb2e41-0fad-4e49-9108-9ac0f288e24e', 'ER1018', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e37b5c10-ad2c-4b2d-aec7-6c856bb1f747', 'ER1019', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9ef7a85b-a56f-4907-b0c3-cf4309aca558', 'ER1020', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a7c46698-ce09-45b5-b5ec-f259cf2dca6e', 'ER1021', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('48b2b8cb-b569-4ca5-8ad5-eb83a3864144', 'ER1022', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bba757fb-5728-4708-95cb-adeeafaec710', 'ER1023', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('72ec5405-e0e7-4aed-a83a-c8e015db6c05', 'ER1024', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('814e959b-bc9a-44b7-8483-2a721fbcf944', 'ER1025', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f56cf74f-fb88-46d1-a59e-1a314fb78d33', 'ER1026', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f2cdfa8f-0af2-4552-b3cb-5a7bbb78ffe3', 'ER1027', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('08d97108-17cd-4247-8e9b-17060d8ba4a3', 'ER1028', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('32ae0beb-28ee-4d92-bff0-1f24a99c62f1', 'ER1029', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9ea08a04-cc2a-44ea-af9a-51331362af18', 'ER1030', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('85c4e40f-8071-4cfd-aaac-c679d8ee814b', 'ER1031', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4ebe9f3e-0cf7-4f14-89eb-85f1e9f470f8', 'ER1032', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4c5caf92-0311-49bd-a060-fb349576c23b', 'ER1033', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4e51d3e0-105d-47c9-b2e5-4a3aa84650ef', 'ER1034', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0ec15e58-10f9-4572-83d3-c788df83547e', 'ER1035', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9806782f-f1fa-4647-a790-1d9ce0cf8a63', 'ER1036', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('39371efc-0626-44df-b454-756c419e9f5d', 'ER1037', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9e882be3-d28a-4b12-81e7-5c1146b70ec3', 'ER1038', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('130f09e7-7920-4967-ac97-d0df1be9a1eb', 'ER1039', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f2f7bc2b-2c64-4593-91f1-077172020795', 'ER1040', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('66c749b2-7b09-4137-95a7-d41474a14de0', 'ER1041', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4865fd4c-a040-4b3b-b645-5d7ae487d5a8', 'ER1042', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cbffde1f-e1fb-42a3-a32f-fe79e70a1641', 'ER1043', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('366d14a9-8597-4d41-b40f-0e82dccda6a8', 'ER1044', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4d24cbf6-269e-4755-89b8-29a94755c10d', 'ER1045', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3b544a10-39a6-4ea6-a06a-e109b24d3bb1', 'ER1046', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('65ab09ec-94b4-4402-95a2-2f1d94ff7dd4', 'ER1047', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4847746f-1a7e-445f-8e8f-2445a856b578', 'ER1048', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1912a39f-ebac-4fb4-85c9-1e77058e85d6', 'ER1049', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f7bd3e9b-ae78-4597-81d6-0701364bc009', 'ER1050', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5101c290-de1d-4c7e-bd44-19e333aa986f', 'ER1051', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76054978-14c8-4285-abf1-eabdc245f5de', 'ER1052', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d29369e1-c755-4fbc-8e01-c50292d0fd5e', 'ER1053', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('aedce45f-d0ae-4804-ae9c-765cb31b3729', 'ER1054', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('72a392a4-5565-43f7-9f31-2044a363cf8c', 'ER1055', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7237eb49-874b-406a-84e5-004a3c32cd1e', 'ER1056', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a08c9c0a-471f-4693-a87e-2d2c91655dbe', 'ER1057', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('150cd759-d37f-448b-8309-f6721b0f9e40', 'ER1058', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8dffaaa5-eb56-4ca0-8daa-debcd900c322', 'ER1059', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('386d05cf-47e0-4929-8fb8-8a02ee952d06', 'ER1060', '9fe9a541-6245-4d25-b17d-68aa5f74dcf5', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c587df1-b353-4789-bacd-b2cdc4078246', 'ER1061', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('106f99a2-e09b-4b3f-98c6-526225df61ad', 'ER1062', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f36bf423-ddf5-4959-8ade-d1e842dd875c', 'ER1063', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d145bfa6-0064-4289-bca0-98e40ee7d740', 'ER1064', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('de928155-d804-4eb7-b49a-dc94fc54c0db', 'ER1065', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7b8cb7ac-d503-4c81-923a-f3a4ac662227', 'ER1066', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f859677d-ab86-4bf1-9245-07c88f53cd4b', 'ER1067', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4375456b-8894-47e6-b136-02f163831257', 'ER1068', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3eaff31a-37e5-4efc-a21b-2a3cc288b46e', 'ER1069', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cc105d80-3d71-401e-bbb3-de9983e74818', 'ER1070', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('30dadc09-5617-499a-848c-7ad2d6cfb1a4', 'ER1071', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2457be1f-81b9-45f7-9f45-23ca36af7c78', 'ER1072', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('83afc832-d20b-47ec-b51b-8999f1a92c5f', 'ER1073', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d4e1b1b6-e8a5-46ce-b447-04419bf6ba79', 'ER1074', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ef070b5c-ce80-4a10-aeda-4d680ad9fab0', 'ER1075', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7e1aa936-93be-43db-a059-99145ba96c69', 'ER1076', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('51b724f3-f0ea-4efc-8e53-106e8f67d5ac', 'ER1077', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f33b909a-c281-4f3e-a19c-e6f84fae1139', 'ER1078', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9be259e4-cf2f-4a50-bb5f-f505f72ad946', 'ER1079', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('820e9387-f3c9-4f87-b167-d8fd64e7979f', 'ER1080', '8ba35b55-6d19-46cb-bbbd-2fcfe852d84e', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2c972cf2-7b8a-4216-acbe-709b62f368f6', 'ER1081', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('99a89b8d-95c6-4725-96ea-f47fc4e8b40c', 'ER1082', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('201f6b9d-ef86-4b87-ac0d-3798b15390b1', 'ER1083', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7036a580-0138-47de-a000-fe80784c3a35', 'ER1084', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d379d2f1-3d65-4409-9b47-0a68e576ad97', 'ER1085', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7a663d25-db3e-4f69-ab94-6eb1122feb7d', 'ER1086', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('692ae9b0-fbab-4ccc-aeb8-902a18e32423', 'ER1087', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('88ecc5ec-b4bd-4220-b40e-5c25e7dbd50e', 'ER1088', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b760a536-efd5-4176-80a5-e2a6f92126d7', 'ER1089', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('81bb821a-e92e-4ee4-b0e5-adba3f58f614', 'ER1090', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7732c5b6-9321-4937-99b7-35431b5c1c34', 'ER1091', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('07bd556a-1c27-41aa-9722-c0be3ce9c3d4', 'ER1092', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7e863102-685a-4547-a7a4-016ff4a98062', 'ER1093', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('32b11f91-b747-4a28-ad30-a5ce0369756f', 'ER1094', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('140a3608-29b9-4d7b-89b2-9d08f28539a0', 'ER1095', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7fbabf73-f280-4c5c-89de-297a0c71f3b5', 'ER1096', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('60ebf823-cf72-4575-ab4d-e219b8cc80a6', 'ER1097', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6978580d-f063-4d62-a4a2-238932bd8b4c', 'ER1098', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('931e2ae4-da9c-49ae-ad94-86c28e805849', 'ER1099', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b272cf07-aedf-4e42-b1f0-84b33fdcd9cc', 'ER1100', '2bd636b7-3951-4164-a2c6-fe364a8110c0', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', NULL, NULL);
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a00b16a1-0add-4e38-8770-67ffd0d5b314', 'ER0410', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('288c8d53-b005-4186-9f87-d75f19139a45', 'ER0419', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('58ac3cdf-ca51-484a-8aeb-a179409a0d93', 'ER0424', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4a49aed9-b583-414d-8209-ccdc691b1f12', 'ER0432', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b18a5ec1-f656-4a4a-a832-7f57899d9f3d', 'ER0440', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c5399d04-cce5-4353-a6e5-f4e7d26caf93', 'ER0447', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('418d9cc2-e3d3-404f-983d-712c98ddf8fa', 'ER0462', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1f73c17d-adf5-4b1d-ac1e-6ae952cad378', 'ER0474', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6569eff1-2138-45e1-abb4-81d898a3dc9e', 'ER0479', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e03ea1a1-44d6-4747-81ed-fab4cf79d92e', 'ER0519', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ad97b2f9-58dc-481e-a460-ffb30a0c2459', 'ER0539', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b7ee6958-3d5a-4d36-a467-7897bd0191dc', 'ER0541', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9ae9a44e-46b6-42e0-8d11-71a828aa3967', 'ER0544', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2d3c9b7e-f45f-40a0-8042-bcffea8a7e1d', 'ER0547', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('869082ba-0e67-4c45-a640-ef37710e51c1', 'ER0557', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c112a83b-4587-43ca-bcc9-5d5c15e32fb9', 'ER0635', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a05b4402-a684-4f33-bbf3-c355af91eaa0', 'ER0650', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4fe86268-f921-41f0-91c9-77b0fc775b72', 'ER0656', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('15592854-9bd6-4c4b-a7cb-5fecea482582', 'ER0660', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('432bc697-a5b9-4ea7-a56d-d1b5a72a81e6', 'ER0663', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bf7d3345-ec27-4817-8471-1cb277a591bf', 'ER0666', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cc19bbd2-276b-4a03-82ba-2861bad8b900', 'ER0674', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0d460fa1-6e3d-41a0-980e-e5aca2d49f72', 'ER0692', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c7762095-f936-4868-9abb-c7a22d1875e5', 'ER0694', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3ffc9641-ba02-4a3b-a1b0-0261c9c02dab', 'ER0695', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fda4805b-e7ea-4c55-8bf0-1b497522fe66', 'ER0712', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e806d025-8200-445c-a04c-ebadd110fb68', 'ER0724', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3dd1c767-0888-4e33-8de5-4fde93eaf215', 'ER0734', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0f98dff8-4da9-4e7e-917e-96bc513349bd', 'ER0744', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1969803e-c560-42a4-8a79-9630e606b486', 'ER0764', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('63d90c62-9c77-488a-8b38-0aba525dc597', 'ER0782', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('da04f0af-eae6-4c1f-86c3-54f1420abd73', 'ER0784', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('668b23c5-4ff2-4121-85a0-9cb9c96947f6', 'ER0786', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('783d0c68-9578-4ec3-a641-3363032981c6', 'ER0790', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('760586d2-591b-4c53-82cb-3e66372aeed8', 'ER0791', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f8eabf31-bee1-43fc-894a-526cff563abc', 'ER0816', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5c9f8c1f-4860-4fdc-8af0-1386503cc305', 'ER0820', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dbf7b1ad-92ed-4998-9e45-8ad2fcc804db', 'ER0825', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('afdcd17b-d99a-4b9c-a60d-c1c00451056a', 'ER0826', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76d50921-6e07-4f20-b7df-de29e63ef213', 'ER0835', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4eb2c46f-8a94-4a42-9ec3-a9ea329f97e1', 'ER0840', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b35794d7-5209-4380-a531-30b693427b4e', 'ER0850', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7b0b9582-8118-410c-81fb-b149e0e2989e', 'ER0858', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('faf7e51c-9875-4485-b674-5c97957c6bc4', 'ER0868', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fab8463a-db8f-4f18-8ecf-545aa87d9a82', 'ER0879', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5d6785d0-171b-4b37-a81e-37b72e5dada1', 'ER0885', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5a008a04-244c-4f9e-9a11-65a662ccc3ab', 'ER0901', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('eb9919f6-f02e-44cd-bd1f-297bec13006b', 'ER0905', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('447d46e7-9dfc-4e6c-b210-1de9a36c2e2e', 'ER0915', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e94da3bc-fe8a-4c04-bbcc-20501dad02dd', 'ER0926', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8001', '8002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f5d2e0d3-e3c5-4300-811d-e6f96305d60a', 'ER0254', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4dc4194f-7d05-4e07-bcef-307af0fc7ff0', 'ER0316', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('765b0b88-febb-4756-b155-4c7fd425fd53', 'ER0407', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2c214896-bafd-41dd-b6a5-5fc84d99aecf', 'ER0412', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8b3bea30-2cc3-46bf-b53d-e02d0c6ae65f', 'ER0422', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1a8b5c01-9501-4edc-940a-bcd3706fd149', 'ER0431', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d23b1444-c833-4ebe-acb1-823e04578407', 'ER0435', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('97622066-43bd-4106-8d05-03bfd9997fe5', 'ER0458', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2969bc56-7c35-4dcd-9044-1894b57976a4', 'ER0459', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5644fbf8-f2d2-4336-8981-6f94b82c3ea8', 'ER0470', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('994c7d5d-f499-4b44-9ccc-19b67b9027e9', 'ER0480', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d47a8d1d-a79d-48ea-8c17-3a5ff5316e13', 'ER0515', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c08deeeb-114c-43d4-bc3a-c3be61b16ffa', 'ER0520', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d9e1d1b0-2f9e-4736-b810-a4796254837a', 'ER0521', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b7b993f9-612b-4fec-a8b3-3bcbe1eb5837', 'ER0527', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1f1703fd-665f-429c-a19a-6bde1e5b38db', 'ER0555', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('816707ad-7609-406c-9d7f-39653b101c11', 'ER0559', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f40d7ea6-845e-4c26-8608-fa36f9416ab4', 'ER0567', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e57bbc23-ada2-486a-9efb-b8f88ca48dc3', 'ER0590', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('02f4e7ca-b092-47b4-a8db-8d826586a63f', 'ER0600', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a1367c49-5e53-4ff7-ae02-4f8ac2b9c1ce', 'ER0633', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cb7185f2-4986-46ce-ba36-8145ae13ea2e', 'ER0646', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f3d5451d-0d12-4a1b-8d15-c7f6e7c138d4', 'ER0648', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('74f0950a-cd54-4acc-8cab-8ba87850a1da', 'ER0654', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a35503ca-c3c6-4409-8777-39ac5cdb6b43', 'ER0676', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('94d4bf5d-f1c5-4fe1-8117-8cb43cc73d16', 'ER0697', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('806b59a1-6a6d-456b-8772-430a013827d6', 'ER0703', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('36bc1a03-5e33-4458-9099-30ba59c1d4cc', 'ER0723', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8aba3f55-01e8-4ed1-b014-e8caf469b069', 'ER0725', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d28263db-28ea-4213-bd33-92f5175dd3fa', 'ER0746', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2adf25c3-1201-402c-8abb-c41940ba7514', 'ER0747', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('37c13aab-bcd1-4157-a988-a1a7077be3b3', 'ER0752', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e2952143-9393-4ced-bf98-41e978cc0440', 'ER0760', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('12db1bd2-e648-40e2-a46c-7c1914322387', 'ER0768', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7cc630aa-f6b4-4920-b5a0-ca7c37921f2b', 'ER0800', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e2c34803-fd89-4e86-acc3-5eb91411453d', 'ER0821', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('407b4791-6324-4dee-a78a-b9f8a4e94770', 'ER0838', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('57fabbc9-2b37-4a50-9cca-53852bbbe968', 'ER0843', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bc88fbdc-091c-491f-8e34-7c84fd63edaa', 'ER0844', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2b19b391-86a4-4bee-a716-005f4024305f', 'ER0846', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cf7ce05e-b961-45e9-98b9-10455a2a2c6b', 'ER0852', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7ee1f666-e0b2-453e-acab-c1ebe3a40c8e', 'ER0863', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('90f42343-6adc-49d9-b4e1-37435fecb868', 'ER0880', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('79c1321a-be7c-4172-9e5e-7940f21074ba', 'ER0914', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('07b4eb3a-2689-4f2d-82d7-1bc70bd78fd5', 'ER0920', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ce293480-3b75-4108-af37-b7858edf5444', 'ER0923', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('72ffb226-f3d3-441e-b641-d1fc3f80aec8', 'ER0925', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b4c1d0e9-9efb-4a23-8f52-f25668882b59', 'ER0937', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f19ff037-0b1e-4251-9cf7-603bd9a2371a', 'ER0939', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8101', '8102');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6cae069f-d7df-41bb-bf6f-978be2c808bd', 'ER0231', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c752e889-1cf4-46ae-a26c-7ffbe9e5332f', 'ER0236', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d8e6a374-2048-487d-a486-3cb18a6ae3ba', 'ER0274', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0b9512ff-b624-4f00-a1f4-e122e02284b9', 'ER0314', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e2118b86-7075-4a02-baa2-6a8cad268128', 'ER0322', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('401cc1ed-5efe-478a-a08c-feae6daae963', 'ER0348', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3c5300fc-cbfa-4f63-ab29-9fd1eb62a7b4', 'ER0411', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('33145d41-d959-498a-b0c2-65bd52104b1f', 'ER0430', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('78dcd996-d03a-4490-a4b0-e2fca285acaf', 'ER0443', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('55420e4c-17b2-4eb4-af1d-f4cb10d95ab5', 'ER0445', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5663f527-a6b8-4056-a6dc-738188bfa5bb', 'ER0452', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a83ac6fa-dfa9-455c-9a17-9c448a8fc5e2', 'ER0456', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2da33db0-c125-4c7e-930b-071a34dca4d7', 'ER0464', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('def2913a-15f3-4e30-82ec-b32d96334025', 'ER0491', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2a2189df-a64d-4684-92de-c4d080c23493', 'ER0505', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b6ac56dc-60c8-4091-bc6a-40a218d7e89a', 'ER0514', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('77cad373-50a1-4df1-acc1-a74185853608', 'ER0524', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8c0e7c53-75eb-42fa-a1f4-0928b5b9ce25', 'ER0538', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('37529518-e9f5-4f76-8600-661e0d58ad0f', 'ER0542', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f6e0b649-7408-4592-a331-5cafc9a607c1', 'ER0564', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cfa63df3-ce43-4260-89bc-c96919d332eb', 'ER0568', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6149ff5d-3c69-43b5-adbf-052f0fa0cd2e', 'ER0571', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f0cd30ad-3d33-49fc-bb0d-413033bcedb3', 'ER0585', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f8f2336b-78fc-4131-87da-ccf88c1589a8', 'ER0588', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3bb5610b-caf0-4a45-817c-816adbaaa9c4', 'ER0596', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bd16e101-f663-4de2-9032-c93b5e7c6d4c', 'ER0606', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2fdf729b-1315-4f31-88b1-424184966b2c', 'ER0618', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76489cef-51d6-4b07-ab3d-b551258e6a03', 'ER0624', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3201d1bf-f605-42e7-8cdf-650b8c7a929b', 'ER0625', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a242f221-ea4f-4766-b5cc-c341d3aea4c1', 'ER0642', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ffcd901-40f0-485b-94d2-975eeb203c09', 'ER0662', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76919693-d257-4379-bace-4d2df2f0df95', 'ER0684', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('af411f62-7475-483c-a313-4ef65e6cd343', 'ER0698', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('569ec48f-ca93-43e7-923f-55807a79a6a4', 'ER0733', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f506ca35-e4cf-4537-9a30-f42972cbd82a', 'ER0771', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('46195d01-7a88-42ac-a168-3b311c579ea7', 'ER0776', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9e7640a3-51ec-4e01-8fa1-d9956db413cb', 'ER0794', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9e5bce95-8c4b-4c6d-809d-692ec047dc22', 'ER0799', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('817d9853-e8eb-4fb7-a09b-7559e4a967a7', 'ER0812', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bfcb0fed-bfe1-4581-bc0d-b40a613165d1', 'ER0822', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('266be7aa-78b9-4cb5-89d8-ee0e74aae0e5', 'ER0833', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dd436170-9321-4301-9454-6274c19bbf74', 'ER0839', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0961b8e3-6ab4-4f60-8e8f-4658f54f32a4', 'ER0845', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ecc660f8-7bac-4c61-b447-16ecc48368b2', 'ER0855', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f529a1a9-93be-4b81-8901-05a43c9e8dff', 'ER0888', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76dbb4b1-c7b3-4493-a3a5-33a3cb7316bc', 'ER0906', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('219e1e02-fbb7-46a4-8304-30db4ecae9f5', 'ER0907', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a65b8d3c-aa5b-4a6f-8ea2-0610ffc1b092', 'ER0918', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9ead7076-f393-4435-a667-5361e742ac5b', 'ER0928', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5781291b-9511-4328-a6ed-c52565962dc5', 'ER0933', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8201', '8202');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4ff4bf36-0ee8-47f1-944a-5db4eb102583', 'ER0232', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('39723017-9af6-4b50-83e2-770939d81a96', 'ER0250', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ef55a00b-f682-4559-b18e-adadc1b8f6f5', 'ER0264', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca139145-2f6b-44f8-85c5-760414bbac11', 'ER0292', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('103569e9-bebc-4e5b-b628-a068340fec68', 'ER0396', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d70044ff-0fba-4375-a416-57f424dc6633', 'ER0400', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('febc9b80-1358-4d44-8faa-da9ef45355c4', 'ER0420', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('025a3a3f-b7c9-4700-bd9c-e4a4b667baed', 'ER0421', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca3a197a-c0d1-4790-bd8c-5745396f4f04', 'ER0425', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('deaab6d4-3ef5-4a58-9c89-a1c8b9f196da', 'ER0475', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8c73e07c-8bde-4313-97cd-e1579058e103', 'ER0484', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c29ef016-5cde-4d6d-9f6d-af6c69832d38', 'ER0485', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('aa4cc206-c6f7-40da-8093-aea833cd30b1', 'ER0513', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b31400f1-36cb-43f8-84d4-ceb4d210e6cf', 'ER0528', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('16103891-1897-4461-b952-be9a26606d99', 'ER0537', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e342e3df-c84f-45cd-9ff0-a49a5c951c68', 'ER0558', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('34435d82-1ae0-41f8-aad9-6c4c7fccd46c', 'ER0562', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7baf756e-e67c-42af-851e-0f281de7dec5', 'ER0566', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('be7f7bb0-dec3-4315-992f-14b7525f38dc', 'ER0575', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('20cb44ac-bb51-4beb-be6c-1ae23ea2de44', 'ER0577', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8680bb9e-56f0-465e-afb4-855ec32251ae', 'ER0578', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e904565c-9dd0-422f-84a8-af1b256f6ba9', 'ER0594', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('174c2146-818e-4347-90f5-4870f63c553e', 'ER0599', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4f4b1a91-33eb-4dc5-a761-20989979d5cd', 'ER0612', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5b099e8b-2c34-4571-a096-c7fd3421e313', 'ER0622', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('58b34085-3d72-4db0-9e30-6081aae3256d', 'ER0630', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ae0f395c-5ef0-417d-b1be-da53038f7d8a', 'ER0673', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('345a7bcb-89cc-430a-963a-c4fc4c90c6a4', 'ER0686', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3850dd5d-1766-4c31-a6f4-03e986979f53', 'ER0691', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0ac94618-a95d-4438-abce-b2132d3bc511', 'ER0728', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bda0d920-5ddd-4c5c-a6c7-4749911640e4', 'ER0761', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2afa9ea1-b3d5-4c07-972c-e10b9c4fa68d', 'ER0762', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('20ec4789-e5b6-42ac-9774-f4c2984ca87c', 'ER0766', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ac110c50-160c-44c1-8e5a-ed939c5548b6', 'ER0780', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('14f26cf7-7939-4e5c-9632-d84169a4a7cf', 'ER0801', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('87605dc1-afbb-45cf-99f5-84fcc2821bd1', 'ER0804', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d45222de-aaab-4c3f-b85a-7b35cc7e51cb', 'ER0806', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b4020db7-f7bd-4e1a-b84b-43b2f75f43ea', 'ER0818', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e7fe0225-fef2-463d-ad29-7b692b13ccaa', 'ER0830', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a0e99fe8-d873-4f4d-9d41-8c7f41a465e7', 'ER0831', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('afbcc0f6-a537-4d49-9f0f-1a484216fa60', 'ER0849', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('52f3109a-0d73-4d7a-915c-fa709056b4cc', 'ER0870', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a98f1d3d-e345-4007-b5e2-35eb18c9fb8a', 'ER0876', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('44c97804-82ab-4cc2-b987-eee8aa8ccb75', 'ER0881', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c857bc75-6371-49fe-8c89-5fbbb95299d4', 'ER0898', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0f06df36-d78b-46ea-9131-80390cca4a2a', 'ER0917', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('455e8879-89de-4cc4-b30c-28d479f04354', 'ER0935', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8301', '8302');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('32be1ba8-11bb-4654-ae8e-d955e226c2de', 'ER0391', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f4738619-8a39-49b8-9baa-7cf04572d5ef', 'ER0392', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fae50b70-4e84-41ee-942c-0b602ef48ffc', 'ER0393', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bebe88f8-b7a3-4448-962d-17909e68d351', 'ER0397', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5125de0d-c6f3-4b4f-b74b-12fe3fdbbe1a', 'ER0402', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7fa7961a-d377-489c-b468-27024efc2927', 'ER0415', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('26d39900-f91b-4995-a829-20331c896c90', 'ER0434', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e3360e6a-1f97-42b5-97cb-dea0ef28f3d2', 'ER0437', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8f5997d5-1408-4dc6-88b8-9e94bb05e123', 'ER0442', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e5c241a6-4310-40a1-aa17-9601b7272813', 'ER0451', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7675ae12-064a-4e16-9361-4176971630d7', 'ER0454', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ae4ac01-9a83-43b3-944e-5a4ea9820975', 'ER0500', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('53b2037d-9007-4e90-b96f-0c35ba773fab', 'ER0502', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('84ca94e7-4fd9-4566-88ae-d6fef2bc458f', 'ER0522', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('64406b13-3ef4-4e09-b5dc-cf59fdc2b527', 'ER0530', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cfc4b28b-fb5b-43e8-bf72-c196c8439841', 'ER0540', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e550e034-7d42-46df-9823-e54337617934', 'ER0550', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4ea5bbaf-b624-47cc-b6be-9711b24536e2', 'ER0561', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b46c8fd6-69b3-4dc7-b986-fe7e9ae16fb5', 'ER0563', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('917218e4-64a0-4761-9850-49542dafd987', 'ER0565', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b1038243-4f97-48b1-8631-d1485d1cf967', 'ER0573', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('18ff2a9f-a51a-4b42-bee5-b69d3ba031a0', 'ER0602', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('11b229ea-7956-4cc1-b541-ddb4518d3029', 'ER0614', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f4ce0746-2f79-454c-9ac9-b5886a091cc9', 'ER0615', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2d98a48b-99df-41a1-9924-de67af42cc9d', 'ER0616', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3fa339e1-3685-4aef-8c13-e2922574d9a8', 'ER0636', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9886782c-fb85-4190-8977-359d60ccd2f5', 'ER0641', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('450ea166-fb63-44fb-b298-e9ebbdd278ba', 'ER0649', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5d885aa9-c3f9-405e-842e-5493327ebe14', 'ER0653', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('79b6e298-b56b-48ab-a721-14d6ba29681a', 'ER0658', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2c814c13-e4a6-4524-af6c-8e5dddfd5bcd', 'ER0664', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ba0ebee3-a626-4863-93f0-83a41b7c1b89', 'ER0678', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6fa3c5e1-631a-4b3d-9be1-d213cc3888a3', 'ER0682', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('aebce28f-37d2-4f62-a7f5-f360c65fe8cc', 'ER0704', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('db80dceb-cbdf-49bc-8e40-774604d4feb6', 'ER0715', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('57e8292a-c848-446e-88d2-320377bbd864', 'ER0720', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9023ce31-8705-4ddc-b6a2-b0be94904a07', 'ER0729', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ed6b5dd-2cd6-4db9-a5fe-1240f1b11d7c', 'ER0730', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c1d9d47f-4044-463c-8749-16af7e838dae', 'ER0739', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4a45f635-9439-4d59-bfcb-9e467f23674c', 'ER0740', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b471677b-1010-4331-a7e0-652ae05ab00c', 'ER0755', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('64d28f20-d512-4dfe-9e25-01118372a84e', 'ER0758', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7ed0ddb7-2e46-4145-9b05-6cd56c6037f7', 'ER0772', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0fa34c0d-0070-4a0f-b624-2c0506201f9e', 'ER0787', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('386c4cb4-dc67-4a51-ba00-e933f6d9ad99', 'ER0789', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c19cfdc-4ff0-4ab4-a68c-9d55bf98e1e4', 'ER0798', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('91475f3f-93dd-40bc-b0e5-8d85df7af33e', 'ER0819', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4e8e5886-6f4d-47cb-8214-aa4cd3a9c554', 'ER0884', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b50006bd-23f2-499c-8670-f73831a99907', 'ER0940', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8401', '8402');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3b45216f-b3d3-428b-9e2e-226805feb575', 'ER0243', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('66f1884b-8e62-4bf2-8bb5-6db5630b06ec', 'ER0276', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6021dde4-d44b-44e2-9426-ff02d19a7349', 'ER0289', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('75e88208-ea76-41a8-93be-e9fb21c2d824', 'ER0307', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dd1ee306-97f8-45b6-8d7d-31e4015205c3', 'ER0395', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c3a74f62-ca5d-4e9e-86a3-6c4f2936647f', 'ER0398', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1f00300c-f30f-48b9-8d58-2c06e01f1eca', 'ER0405', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8f3a0f3f-e94a-48fd-817e-c6703209d55b', 'ER0408', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('592a9a4d-e01d-4982-a892-a2563e368200', 'ER0417', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4b310da2-5a96-411c-8139-16d9af29d1b3', 'ER0418', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5eb79092-a49a-4e2c-a8da-db29ca5c5b76', 'ER0433', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8d2030e0-cbab-4145-8997-eb8f69fe7028', 'ER0461', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8531d883-91ba-42d1-930e-417f1b7817be', 'ER0483', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('655bf75d-8bd0-400e-8ccb-9da35c9563b2', 'ER0486', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ada0c954-818d-464b-b645-14c10bed38b1', 'ER0492', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7fbcf57b-60a2-416d-882c-55b8f64b038b', 'ER0498', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6ce448ad-fe7e-4747-bae2-fa2fc8716aea', 'ER0503', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('54a54e8e-af22-4e23-8c00-b9b9cc1c3522', 'ER0508', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0857e35e-736f-4482-9eab-cd1193ed7a3c', 'ER0516', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bef3c26c-1b21-40c3-a93b-70604f8f2e7f', 'ER0517', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('37aa644d-13a6-47c1-8e10-a11375e855c6', 'ER0536', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('929bacb9-1971-4da7-a46e-95e25e2ee18b', 'ER0572', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b41d60fa-50d4-42af-b2d0-2eb7b438e6c0', 'ER0583', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f1a5a1e6-40a7-4344-b263-533382f0335e', 'ER0587', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cb3e714d-3c75-45d7-9c27-a654beadaf1e', 'ER0603', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('90dfda6f-a07e-43d7-b53c-6403c10e70c9', 'ER0637', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ef765ad9-9d68-48a6-a88d-aa0c512642d5', 'ER0640', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('42e14dc4-2c2f-40ff-9174-c6c08d89d7e5', 'ER0702', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3a7ce3bf-999a-4159-8129-c8f9a9c85a8a', 'ER0707', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7390fbfd-1b5e-4c86-b484-4886fdfaef98', 'ER0713', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('222a866e-b908-4911-96a8-1fd6a747e9ab', 'ER0714', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8d04f3e5-674f-497c-ae28-30b2760555c7', 'ER0735', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca46a5d5-24ce-4cbe-b82d-20332898a151', 'ER0736', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('28d94088-1611-4f2b-904e-72e69c045966', 'ER0748', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fe7eebbd-0f0e-4ca7-b9b9-ae23dc561c1f', 'ER0756', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('57af0deb-6fc7-44e7-82d9-ce4f58ead398', 'ER0759', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f4208f89-2baa-4744-9b29-a8d3737e29f4', 'ER0781', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4cd06a7c-eefb-4abd-a89d-56d8969e8b56', 'ER0796', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fadb0c34-dc98-4f8e-a8bf-37eedf00e87b', 'ER0807', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a326bc9c-872c-46c3-b958-8607936d4f1c', 'ER0814', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('aafe2760-86d7-43c3-80c7-f2e878fd9060', 'ER0824', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('17d6c9b0-5a61-4b51-9c5b-92b595f8a1c3', 'ER0837', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('067d7c61-9700-4a29-adfc-122c2235e1e8', 'ER0847', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e8745d10-a448-4b94-9880-5078b6e19ea7', 'ER0853', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5bfc6567-b392-4ac2-9b09-34736efbc445', 'ER0857', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a2301a1a-15ad-4ac6-bcc5-7866fe7e7ae7', 'ER0859', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1629b705-12f9-4595-abf7-411e9419b545', 'ER0877', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4ce69add-afc2-4739-bff2-cdcf05c4f931', 'ER0902', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c53d8613-5eb9-4b2f-90ee-3604cd67c28c', 'ER0919', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('66a0ec93-0a11-4c50-b1d9-350d92483300', 'ER0924', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('276a4503-4922-4b2b-a539-204dd7d01872', 'ER0929', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8501', '8502');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5b5f4e09-639a-40f6-814f-e88832a8ba22', 'ER0234', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c2d25c3e-c9b3-4d44-bc7e-67f929765a01', 'ER0257', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e1e3766a-07fc-4cd9-84e8-44686a848c64', 'ER0262', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('df89693c-b27b-4846-9d27-490b87c343e6', 'ER0266', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7b606510-c3e5-4adc-9642-dc7cb90311b9', 'ER0268', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5218c202-9fa5-4f27-aabb-05b99c03e129', 'ER0293', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b21d8b50-a2bd-4385-b61c-c96700445a10', 'ER0294', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('45fbe1ad-c3b8-439e-9a2a-26bc3bdfd465', 'ER0300', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('24c48db9-ef4c-4f6d-8637-5fd9d772b019', 'ER0306', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5afa5ad2-d2e9-43b5-abe2-4de4c037bfd5', 'ER0455', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9bc9836b-20bb-4030-8f6f-71042710a5cc', 'ER0487', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5d1f7f47-9df2-4c85-a3a8-b05eaa5ff581', 'ER0488', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('916a503c-ed46-4a05-8da0-70b9966fe939', 'ER0494', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('44107f3b-34cd-42b3-9871-20ed9172cc34', 'ER0496', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('90da126b-3b7a-4856-b488-e80cde70e426', 'ER0526', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('485b767d-adf2-4693-a40a-88a0cba082af', 'ER0545', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b36ae160-3d96-471a-a00d-d519d48aa124', 'ER0551', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca166db1-61af-4c80-ba81-93dd4da40e0b', 'ER0556', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('75ab7abc-2b77-4cc6-91a9-c72dbde3e0c4', 'ER0605', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4426c5ed-32b3-4315-93a6-c38f63052ed9', 'ER0621', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('144110f5-29e0-45b2-b16f-dec5efe60dca', 'ER0628', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('01e0afe2-27e9-4b72-94f2-c26075cb2468', 'ER0629', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76695a22-10ca-4c5a-959d-dfc40d3c37f4', 'ER0644', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4add0597-ab48-44bf-9249-82bad9683547', 'ER0667', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d0a73e2a-09fa-43c8-84b3-35ae40093fc2', 'ER0670', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dd6c11d2-4269-45d2-8925-6fa05fc5e0b6', 'ER0677', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1b6c3642-437d-425f-9c9b-ba174d230f2a', 'ER0679', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7f128c18-eebc-4bdb-b0d6-edec7369345b', 'ER0711', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a56d58a3-acd7-45d0-a792-e713c1b8c84b', 'ER0769', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('45aa8a5a-22f7-44a0-8d80-a1c6df6d1126', 'ER0774', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ac16bc34-0986-4782-90e7-c5331e552b08', 'ER0778', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9eee6868-a339-4180-a8e3-dc1939c4b979', 'ER0785', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ce1467d9-6310-4d1e-bb25-d20d74d83c3d', 'ER0795', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('00f786b4-9362-41fa-898e-7cc97856bf1f', 'ER0808', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a9dff12d-3851-4fca-86c0-5b3ccbd88410', 'ER0841', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fb4bf42b-a7b2-405b-8cf2-5acb9fca77f9', 'ER0864', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6a3a1c87-e237-43f2-9871-d8e06b81551c', 'ER0874', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('aba45f65-f9fc-4d59-802f-52918d6a2cbb', 'ER0897', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('22f05112-fd59-4bc5-b20d-f834365b7725', 'ER0910', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f64753b7-8329-49ab-8c83-72354382ad9e', 'ER0921', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('26d1a520-81e5-46c2-aa7b-106b3cb0a5ca', 'ER0922', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('34d5896e-036d-43db-aeb0-21f40ff1893a', 'ER0930', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8601', '8602');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('48b4ea2f-9344-4ac2-9e05-3d01020dbbd1', 'ER0224', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('db4768fc-a3c9-445e-b5f5-c4a3918aa251', 'ER0233', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d85d7d8b-ac82-4701-b803-d5c011c8cf81', 'ER0263', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a8558ac6-1ada-4e6c-86bc-06af088baafa', 'ER0282', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d2557abb-aaf8-461d-af63-0abadceebf69', 'ER0291', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('df532af7-c667-4fc9-8c29-82519e4dda33', 'ER0313', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f91ee436-06ab-4fce-901f-f21630a6548b', 'ER0315', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('63b506c4-29cb-4d01-b8d0-4f9c064c1fb2', 'ER0394', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('490bab67-e0f6-46cd-9c1c-84513602c107', 'ER0409', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c2d7f8cc-199d-4898-80f7-5d611d5743d1', 'ER0423', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('92ba1e7e-d73e-4661-9259-6172db65ae76', 'ER0429', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4c75e5e4-fc76-41f9-ba10-1c5842cc066d', 'ER0444', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bbf05411-4a8f-4899-a7b9-7ae5be878503', 'ER0449', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('84835798-8688-44c2-9087-098b580f2530', 'ER0466', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ef2708f0-aac6-42ac-bda3-1b0a5ef7853f', 'ER0467', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f2fb74db-8cf0-4524-9aeb-92069cef0fdc', 'ER0471', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1e3b292e-5ad8-47d6-998b-2ffc905319ec', 'ER0481', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('121c3724-289b-497c-9fda-153bb3a7a795', 'ER0499', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('db166fca-953d-496b-a77d-3713a10ec081', 'ER0518', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4fcaf494-3725-468c-85ec-6cdbaa4f643b', 'ER0525', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6fcf243b-2230-42b8-942c-546be0b6b114', 'ER0531', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7339304c-8400-4939-addc-c2c4aefa9c7d', 'ER0533', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bbed71c2-a657-486d-8f41-fb39d4eb5701', 'ER0548', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fbc0f04c-b8ed-4a76-b3cd-e548fc80f36a', 'ER0553', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c934ebf7-b05e-4e24-845f-af8d6631b02e', 'ER0554', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('864543b5-4b94-4e97-a939-15579f86b60a', 'ER0560', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1cca5ef8-2ded-4432-aef9-482cfe4bdfa6', 'ER0580', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('393f2e14-0b81-4451-9344-d5c52c49860b', 'ER0582', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ebaa136-fa67-47eb-ae1f-c9e721f41f31', 'ER0593', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('eb8b77f6-d06b-478b-b3fb-5d90f9b13deb', 'ER0598', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8f9f6a2c-f941-449d-8196-14c9b6481195', 'ER0607', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e6cc959c-c08c-45a6-9faf-d0686606312b', 'ER0608', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('92c08123-66e6-4200-9fe2-790c1c9fb508', 'ER0613', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e9bba76e-2c70-4e4e-9c5a-a8d4570815fe', 'ER0619', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8840de27-7db1-4c0e-a6b7-7db26f1589e6', 'ER0634', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a777c006-4d1c-4ae2-ac9b-d99b4c4e4bb3', 'ER0645', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('548d55f1-e19c-4e76-a0c4-245c22d64e1c', 'ER0647', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7f81e1a1-7417-46b1-8e00-62710a63f1d6', 'ER0655', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0d5b35a8-2356-4601-b653-bf53c08bf4a6', 'ER0661', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b4ce9b6b-60ca-40eb-980c-00f895005ad7', 'ER0665', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('39e50601-6a88-4f2b-8f05-18e72b09720f', 'ER0671', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d6dee81d-b8a8-4725-bf42-a6b4363b6b78', 'ER0675', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6ff857ae-c692-42a9-9b2c-7e6224bd6151', 'ER0680', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5bc99e38-d1c4-4b2c-b96e-4af70617ebfd', 'ER0683', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('957094af-17b1-4640-a8be-27a8c5095df0', 'ER0689', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('99a6ab1d-e48b-4ced-8667-53027856678d', 'ER0693', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c0f394d8-bca7-440e-a9b3-e685c4fcf22f', 'ER0700', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('74e95deb-8659-4fb9-b2a7-53b0a1b552b3', 'ER0705', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a1f03597-33cc-43ef-bfc0-b78ae6f91827', 'ER0706', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fadeeb80-fb4b-4885-9cd1-f2b7f33bab6e', 'ER0718', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3ae69d77-428a-49de-bcc2-99ffbc981948', 'ER0726', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9c30f391-d476-455f-84e6-c12b699acc7c', 'ER0775', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2d9f04a2-3be9-4d3b-b5b6-1868789bb8ea', 'ER0788', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('53d44bfe-09c9-4eb7-86b3-6626813bd203', 'ER0797', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('eda8a7d9-4de9-4720-9620-9c0a065ecc83', 'ER0823', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2bfd5224-4f3f-46ae-b851-498b972c0612', 'ER0854', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8b59cc57-8097-4052-be27-6463663235eb', 'ER0861', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a4bb37cc-a039-48b6-b53a-7380311822a9', 'ER0878', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('666e10a9-1042-4a00-b50b-5ffd59c88b9f', 'ER0887', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c098a51-3be1-41a9-854a-eca567836036', 'ER0890', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9dfd5f00-ce8f-46c8-a235-447943a0452b', 'ER0891', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('113fdac4-2b71-4467-bd9e-4d613d4bfd2b', 'ER0900', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bce95038-cbf3-478b-b797-180cbcedd3c7', 'ER0904', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('886242d5-d42b-4b85-aa34-b92857c9f0dc', 'ER0909', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('d6475596-dc89-48f6-b7e2-f4502af2c6f8', 'ER0911', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('33faf2b3-ccbf-487e-9837-1b5dcc99b6d2', 'ER0934', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8701', '8702');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('15b7ca8c-9922-4a9c-b9b1-6e637e7a1c39', 'ER0275', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('7545a1c0-7027-4c40-ba8c-748e96da1d5c', 'ER0333', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('deb2d3b4-d0ad-4070-b9e0-bfc5c0578e2f', 'ER0344', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9d4f86e5-e1f4-491f-877f-ccffcd14ab6a', 'ER0404', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3c814bed-c470-4b1d-8bb9-69a49df6aeaa', 'ER0436', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('117595c6-8e75-4670-be93-80ecfecd0379', 'ER0460', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5e4a46fe-4a31-48b1-8daa-f8eb5689148e', 'ER0463', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8b9d5d43-5e44-48b2-b1bd-5acff34a15f6', 'ER0465', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5f3820c7-ae84-437f-8950-47800517ff27', 'ER0469', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('481a6c4a-3db2-4fb6-978d-21316ce814c3', 'ER0473', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b85e9254-cadb-440c-8e4e-61802902a665', 'ER0476', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9c1bc306-db4d-4d39-8424-110d870e7dd5', 'ER0501', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ad940857-679b-4420-b129-4b04b5a07811', 'ER0504', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cc4b84b8-c4c4-4dad-ab7b-8d4fe0157ffa', 'ER0546', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8dafc20f-2c2d-40ed-aa3e-c98fafe838cd', 'ER0552', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c01e8109-57ba-48bb-8f23-a91774ec55e2', 'ER0569', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('808333ea-eb66-4d29-86d2-249dc371b100', 'ER0591', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3d0311b1-41a5-4645-bf8c-d306b8a799e6', 'ER0601', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('23c9f847-c950-48df-aec3-ee739cb9ad19', 'ER0610', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('68de6630-d048-4e9f-a75f-080675865052', 'ER0626', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('14fee469-347b-4a0d-9ddb-b64687647af9', 'ER0652', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('23c53815-feed-4e70-ac86-a12ef9a06557', 'ER0669', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e1033611-3fbc-4e58-ad80-27a7c1ceb450', 'ER0716', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('21b6c26c-f555-4a64-a171-0e46cdb5b923', 'ER0717', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('76fb0ea3-1b62-4063-9dfb-4be0c160551b', 'ER0749', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('64024720-d7d1-48d2-bf16-7ca3e44d6578', 'ER0751', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0378f377-221e-4b59-a70b-bafcdc69b1be', 'ER0777', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('68d544ea-7b3f-4de4-8e11-64652d81d21d', 'ER0805', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ea24e86a-1241-43ce-8d69-9121755306b9', 'ER0809', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c116df0-435e-4098-9138-ffa821550a4f', 'ER0811', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8505fe09-a6bf-4b86-bbdf-9cafb57cff07', 'ER0827', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2a6e39dc-85b5-47dd-9a10-81f9f4e10531', 'ER0832', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dd982300-c457-4017-8401-080529e12b12', 'ER0883', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('53897945-831d-4b05-99d2-02bc94bdf867', 'ER0886', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6989ad64-80d7-4a48-afa2-1b721ca8e63f', 'ER0889', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3da36b57-8719-4f34-ab0c-d90cf1cf244b', 'ER0894', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('44fa08b3-e6c9-4712-a526-8eef60ed0ff2', 'ER0895', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('63d64918-d12b-46fa-a1e2-34fb7134e534', 'ER0896', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5ec32d8c-7594-49a7-a19b-09401a9a9ba5', 'ER0903', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e0f372ab-9312-4429-8a4b-176c337e3e49', 'ER0936', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8801', '8802');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5795e9d8-f589-43aa-a50a-537ee9727cc3', 'ER0221', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0a2841db-8121-4263-9eed-2f51ce413057', 'ER0227', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bab539d3-e05a-4d06-b77f-736d1315fb4b', 'ER0271', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4cbffeae-1565-49d4-86f7-94e165843502', 'ER0287', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5839ffd3-b953-4ed6-8f07-3fada891bd6f', 'ER0310', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6c232d17-3e7c-4773-a9cf-efb7e100cfa5', 'ER0349', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5037e250-5f37-414e-95e6-ddecde35dc1e', 'ER0403', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9cfb155b-a81c-406a-a67c-38efeb6c70ce', 'ER0406', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4e8f2fdd-8873-4048-a296-a1bf79b3fdc5', 'ER0413', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('63a2ce55-b94a-41a5-8415-ce69ff933873', 'ER0414', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('597231aa-cd99-4d70-bf89-1e8dac4339d1', 'ER0416', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('71214120-7d0e-4f44-af70-88b2ccbaeede', 'ER0428', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ad5f34bf-9d9f-46ed-98c1-d25d4350a5f7', 'ER0441', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0745e642-aa0d-4a96-927a-9fa8cce6a236', 'ER0448', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a5a15904-b3fd-40c4-a8f1-a3997d4b8a13', 'ER0453', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c8c35711-bd14-415c-9ac0-02c0c4ca316d', 'ER0468', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dee33af4-9055-4056-b290-d0a5aeee3028', 'ER0478', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('daded727-0378-4ff7-ae2b-48a4c2d5fcf3', 'ER0497', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3c4c57d8-7572-4066-ab3a-ec2cc5ae4dcb', 'ER0506', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('41804040-1ffe-46fd-a1dc-e8090ca632b9', 'ER0507', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('39057978-6d6e-4012-a8ac-80a627651319', 'ER0511', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('caf96e80-497c-4eba-9c8d-7b1c1786a768', 'ER0512', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0a025d5f-2a26-4dd6-8104-2f6bcbc4aeeb', 'ER0584', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1ee39efd-69a8-4611-aedf-ae04cfa104f8', 'ER0589', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c2d1438f-7e25-4cd5-9964-24ff0111a5d5', 'ER0597', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('56763b7d-c8e4-4a19-bb1c-4c36b1bb51c1', 'ER0627', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('95f9fe47-e32c-47ff-80da-530c7d8720d5', 'ER0638', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a616ddb2-541e-465c-9686-0da4045b44a5', 'ER0643', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('53578253-6f35-424e-b9e6-182584a515d4', 'ER0659', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c9e3c47e-ec6e-4b04-82b7-15b484d5536b', 'ER0743', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b26a6799-4bee-4477-bcc9-dce162f8fe1f', 'ER0763', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c377e023-995c-4740-a57d-32960a3f96ab', 'ER0765', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('db616bff-378a-4515-8409-f39f669d41d2', 'ER0767', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('082d9f7f-e18c-4372-8889-cd5368c286ed', 'ER0866', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c5a8976a-081e-4877-a381-54cc4be30534', 'ER0873', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('f697d11f-c097-428e-99a4-33cd090b1aec', 'ER0893', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('554e1780-3331-4f54-b012-5ed28ad9d067', 'ER0908', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('986a0cd5-29bb-49af-a152-1470dc24c56b', 'ER0913', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fef77879-433f-4fe1-ba57-e0ba42a50d2e', 'ER0916', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '8901', '8902');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('cbd30f71-825e-4d82-9e05-6e8f9e64fa0d', 'ER0225', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c278a611-1e08-45c7-a5b5-c0ca77da0585', 'ER0229', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1fee60de-d0c5-41de-9c14-f5ad210a1701', 'ER0251', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('53c5c988-f8e8-4b53-b883-6dad185fc23c', 'ER0259', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a0165c32-9d76-4c7b-bec0-32f00cab1d03', 'ER0270', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('908085eb-45d6-4131-8fc3-bdcafa585570', 'ER0285', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('119ae9e0-a633-4db2-8f2a-86ac5add3b48', 'ER0298', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('876e240d-ff7b-4bec-bcf7-28bbaa4d748d', 'ER0327', '7b5d91ee-d36c-4383-a27b-3b65179d568d', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c265c938-843c-43e9-b7c9-169ff60a6fab', 'ER0337', 'a3cd0de4-33f1-43e4-bf27-03a94b03e1e7', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('eb6fdc23-6dd2-462f-a940-b5c6aa9fb809', 'ER0399', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('56bf95fb-9b77-46b7-b25e-6ef87e22ba8e', 'ER0446', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e2108bea-12c6-4586-9f5a-cc1476eee9a9', 'ER0450', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('e52b3ba4-3bad-4fdb-b25d-62476ac70051', 'ER0477', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ebf47cb5-ab4b-450b-8f51-371e86bbdfde', 'ER0489', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('269ece03-5f28-4f84-b0e2-2cd1cf9a4be1', 'ER0490', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4499b6f8-c0d2-45cc-a258-d4dbabe987b0', 'ER0529', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('22f14acc-01d8-49b9-9d1f-59b9a80bfdcf', 'ER0570', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a71488ea-4d28-4c72-badd-5d6bc561f852', 'ER0574', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3dd05274-f775-4bcb-b6da-2a0f84e07a35', 'ER0576', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0f5f4b73-23f8-42da-8585-61c4525e57de', 'ER0592', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bf10f3ba-67a2-4fd6-85f4-0f2e5ee2da92', 'ER0617', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fe1692d2-c43b-4962-9ac0-b5fefdef6c1e', 'ER0620', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fa334b93-427a-4219-af90-8eb0438f3ccf', 'ER0623', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fbf24d86-974a-469c-b7bc-90828fb023c5', 'ER0631', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('0f79d8c5-86fd-48df-9c30-926d860ec1f9', 'ER0651', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('fea11fd0-baa6-4f8d-a461-61b9b8da026d', 'ER0668', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('4a38b1c4-21bd-4cfe-81f5-eda01c54d1bf', 'ER0672', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2ab1614b-cef4-4bce-a939-7e0435403aa4', 'ER0681', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('dfda7d1c-8bd8-46e3-87b1-535ff26e09ba', 'ER0685', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('2ad12db5-339a-4a38-bc8c-a942ec85883f', 'ER0699', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('1a3c1a1d-2d02-4bb0-8a2d-8e9c791d4651', 'ER0732', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('c7cb4640-2251-4c71-9a4d-fd124284fbad', 'ER0737', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('21f7c365-73c7-453e-a8e6-e7fbfa0a88a1', 'ER0738', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('bce08b82-4a75-4d43-bbdf-cc5cb2dee90f', 'ER0741', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ea8bfb8f-7a7f-4c69-b90d-d464f440e5db', 'ER0753', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('a256a58e-1044-448f-9b0d-bbb900243b41', 'ER0754', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b1acbd02-b4e4-4ba4-9633-cc5226264e3a', 'ER0770', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('5cd93f30-2d56-4ce5-91c4-b195fc337bd0', 'ER0802', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ea4b1c28-4e88-42af-b7d2-f5dfe645ffbf', 'ER0803', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('8d2b91cf-5f97-42d0-b34b-0927654f1a28', 'ER0810', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('6add4aab-b606-4503-a983-737c44207a13', 'ER0815', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('721bd886-2d45-4b36-9ed9-a9a8c3e4c82f', 'ER0836', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('3da30c23-fac3-4149-abe2-ce49cddba882', 'ER0842', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('256ab1ed-927b-411a-9ec5-afdfcaacfe61', 'ER0851', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('355f676d-0991-4516-baaa-175328a0f1ca', 'ER0865', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('ca1158e7-f886-495e-9700-be56305b4b39', 'ER0872', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('121aedad-1ab9-49e1-920b-526f2db3cf4c', 'ER0882', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('9ffc812d-a667-4894-9ea2-4a39e3c3f73e', 'ER0899', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('85c8140f-1308-4b5d-b9cb-411e5fefb040', 'ER0912', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, status, notes, created_at, updated_at, deleted_at, current_location_yard_id, train_set_wagon_id, current_train_schedule_id, current_yard_id, export_train_number, import_train_number) VALUES ('b76d84fd-839e-4bf1-b7f5-ddca82dbbd3a', 'ER0927', 'f7886975-ba6f-422d-8de4-e672c8482699', NULL, NULL, 'AVAILABLE', NULL, '2026-08-05 07:31:08.666221+00', '2026-08-05 07:31:08.870506+00', NULL, NULL, NULL, NULL, 'bf73dbd3-79aa-4ff8-a471-aed47e5ca29d', '9001', '9002');
|
||
`,
|
||
};
|
||
|
||
const FOREIGN_KEYS_SQL = `
|
||
ALTER TABLE ONLY freight.last_mile_container_allocations
|
||
ADD CONSTRAINT "FK_0bc28c4087bb0c6e435677a6fcb" FOREIGN KEY (last_mile_id) REFERENCES freight.last_mile(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.ff_clients
|
||
ADD CONSTRAINT "FK_1101fbe8e745d91b6bd0747b582" FOREIGN KEY (forwarder_company_id) REFERENCES freight.companies(id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile
|
||
ADD CONSTRAINT "FK_173a865c0889b8c5564993c70ff" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.external_profiles
|
||
ADD CONSTRAINT "FK_26d2a16e263ab4fe0a4c8e91954" FOREIGN KEY (company_id) REFERENCES freight.companies(id);
|
||
|
||
ALTER TABLE ONLY freight.company_profiles
|
||
ADD CONSTRAINT "FK_30228dd283a0f14486346e1db96" FOREIGN KEY (company_id) REFERENCES freight.companies(id);
|
||
|
||
ALTER TABLE ONLY freight.first_mile_container_allocations
|
||
ADD CONSTRAINT "FK_31dfdcea6bf62ec98f2e5428996" FOREIGN KEY (first_mile_id) REFERENCES freight.first_mile(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.company_change_request
|
||
ADD CONSTRAINT "FK_366962cebba507dd8b0146f7f47" FOREIGN KEY (company_id) REFERENCES freight.companies(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouses
|
||
ADD CONSTRAINT "FK_374ce3a1439d02d5ff97e479921" FOREIGN KEY (facility_id) REFERENCES freight.facilities(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_container_allocations
|
||
ADD CONSTRAINT "FK_4fa907f6cc2cfe181385dcd57c5" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_requests
|
||
ADD CONSTRAINT "FK_590f6298c3c3ae09d982f96fb9d" FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.import_djibouti_operations
|
||
ADD CONSTRAINT "FK_6c3e3046300b152a13505bf8ffd" FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_6fa72e9c8fdfa587cffd9383470" FOREIGN KEY (destination_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_container_allocations
|
||
ADD CONSTRAINT "FK_825ceccffec68ac49c85bd75de0" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.interchange_document_items
|
||
ADD CONSTRAINT "FK_864508e9249279bd3e12dafdd21" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.company_revisions
|
||
ADD CONSTRAINT "FK_8a17ca32f9e4624e1c55c51f7c7" FOREIGN KEY (company_id) REFERENCES freight.companies(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.first_mile_container_allocations
|
||
ADD CONSTRAINT "FK_8bba293eb2fd548433d28d97103" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_container
|
||
ADD CONSTRAINT "FK_91946ca51ff65658f487eae1162" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_container_allocations
|
||
ADD CONSTRAINT "FK_99c89fe4e4c3e3670fdc25ea9a9" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_requests
|
||
ADD CONSTRAINT "FK_9e49de0ed55d84d3f97627040cd" FOREIGN KEY (created_booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.cargo_types
|
||
ADD CONSTRAINT "FK_CARGO_TYPES_PARENT_GROUP" FOREIGN KEY (parent_group_id) REFERENCES freight.cargo_types(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.first_mile
|
||
ADD CONSTRAINT "FK_a19b54ac3d426df8cc0e313be06" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.first_mile
|
||
ADD CONSTRAINT "FK_a2ae03360a02c61fdc2e8361ea8" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.ff_clients
|
||
ADD CONSTRAINT "FK_af4d6bac2844d39095b2056e978" FOREIGN KEY (client_company_id) REFERENCES freight.companies(id);
|
||
|
||
ALTER TABLE ONLY freight.booking_cargo_modifier
|
||
ADD CONSTRAINT "FK_booking_cargo_modifier_booking_id" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_cargo_modifier
|
||
ADD CONSTRAINT "FK_booking_cargo_modifier_rate_id" FOREIGN KEY (rate_id) REFERENCES freight.rates(id);
|
||
|
||
ALTER TABLE ONLY freight.booking_cargo_modifier
|
||
ADD CONSTRAINT "FK_booking_cargo_modifier_rate_snapshot_id" FOREIGN KEY (rate_snapshot_id) REFERENCES freight.booking_rate_snapshot(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.booking_container
|
||
ADD CONSTRAINT "FK_booking_container_container_type_id" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.booking_container
|
||
ADD CONSTRAINT "FK_booking_container_weight_limit_rule_id" FOREIGN KEY (weight_limit_rule_id) REFERENCES freight.weight_limit_rules(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_rate_snapshot
|
||
ADD CONSTRAINT "FK_booking_rate_snapshot_booking_id" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_rate_snapshot
|
||
ADD CONSTRAINT "FK_booking_rate_snapshot_rate_id" FOREIGN KEY (rate_id) REFERENCES freight.rates(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_cargo_type_id" FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_company_id" FOREIGN KEY (company_id) REFERENCES freight.companies(id);
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_company_profile_id" FOREIGN KEY (company_profile_id) REFERENCES freight.company_profiles(id);
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_consolidation_partner_id" FOREIGN KEY (consolidation_partner_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_customer_id" FOREIGN KEY (customer_id) REFERENCES freight.customers(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_service_type_id" FOREIGN KEY (service_type_id) REFERENCES freight.service_types(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_shipping_line_id" FOREIGN KEY (shipping_line_id) REFERENCES freight.shipping_lines(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_bookings_train_id" FOREIGN KEY (train_id) REFERENCES freight.trains(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.last_mile
|
||
ADD CONSTRAINT "FK_c2d9331fda382ae3e92e6bf913a" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_document_review
|
||
ADD CONSTRAINT "FK_c669c986810af3b82cf033a8d79" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.interchange_document_items
|
||
ADD CONSTRAINT "FK_c9fba2c4a1631542a37ad5089d7" FOREIGN KEY (interchange_document_id) REFERENCES freight.interchange_documents(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT "FK_cabe80a0c7b9e0144854a4f353d" FOREIGN KEY (origin_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.cargoes
|
||
ADD CONSTRAINT "FK_cargoes_cargo_type_id" FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id);
|
||
|
||
ALTER TABLE ONLY freight.cargoes
|
||
ADD CONSTRAINT "FK_cargoes_container_id" FOREIGN KEY (container_id) REFERENCES freight.containers(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.cargo_type_wagon_types
|
||
ADD CONSTRAINT "FK_cgwt_cargo_type" FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.cargo_type_wagon_types
|
||
ADD CONSTRAINT "FK_cgwt_wagon_type" FOREIGN KEY (wagon_type_id) REFERENCES freight.wagon_types(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT "FK_containers_container_type_id" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id);
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT "FK_containers_wagon_id" FOREIGN KEY (wagon_id) REFERENCES freight.wagons(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.container_type_wagon_types
|
||
ADD CONSTRAINT "FK_ctwt_container_type" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.container_type_wagon_types
|
||
ADD CONSTRAINT "FK_ctwt_wagon_type" FOREIGN KEY (wagon_type_id) REFERENCES freight.wagon_types(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.dropdown_options
|
||
ADD CONSTRAINT "FK_dropdown_options_setting" FOREIGN KEY (setting_id) REFERENCES freight.dropdown_settings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.file_upload_fields
|
||
ADD CONSTRAINT "FK_file_upload_fields_setting" FOREIGN KEY (setting_id) REFERENCES freight.file_upload_settings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.locomotives
|
||
ADD CONSTRAINT "FK_locomotive_current_yard" FOREIGN KEY (current_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.rates
|
||
ADD CONSTRAINT "FK_rates_cargo_type_id" FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.rates
|
||
ADD CONSTRAINT "FK_rates_destination_yard_id" FOREIGN KEY (destination_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.rates
|
||
ADD CONSTRAINT "FK_rates_origin_yard_id" FOREIGN KEY (origin_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.train_locomotives
|
||
ADD CONSTRAINT "FK_train_locomotives_locomotive" FOREIGN KEY (locomotive_id) REFERENCES freight.locomotives(id);
|
||
|
||
ALTER TABLE ONLY freight.train_locomotives
|
||
ADD CONSTRAINT "FK_train_locomotives_train" FOREIGN KEY (train_id) REFERENCES freight.trains(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.train_set_locomotives
|
||
ADD CONSTRAINT "FK_train_set_locomotives_locomotive" FOREIGN KEY (locomotive_id) REFERENCES freight.locomotives(id);
|
||
|
||
ALTER TABLE ONLY freight.train_set_locomotives
|
||
ADD CONSTRAINT "FK_train_set_locomotives_train_set" FOREIGN KEY (train_set_id) REFERENCES freight.train_sets(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.train_sets
|
||
ADD CONSTRAINT "FK_train_sets_train" FOREIGN KEY (train_id) REFERENCES freight.trains(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.trains
|
||
ADD CONSTRAINT "FK_trains_current_yard" FOREIGN KEY (current_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT "FK_wagon_current_yard" FOREIGN KEY (current_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT "FK_wagons_current_location_yard_id" FOREIGN KEY (current_location_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT "FK_wagons_train_id" FOREIGN KEY (train_id) REFERENCES freight.trains(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT "FK_wagons_wagon_type_id" FOREIGN KEY (wagon_type_id) REFERENCES freight.wagon_types(id);
|
||
|
||
ALTER TABLE ONLY freight.warranties
|
||
ADD CONSTRAINT "FK_warranties_vehicle_id" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.weight_limit_rules
|
||
ADD CONSTRAINT "FK_weight_limit_rules_container_type" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.work_orders
|
||
ADD CONSTRAINT "FK_work_orders_vehicle_id" FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_batch_offers
|
||
ADD CONSTRAINT booking_batch_offers_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_batch_offers
|
||
ADD CONSTRAINT booking_batch_offers_train_schedule_id_fkey FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_container_units
|
||
ADD CONSTRAINT booking_container_units_booking_container_id_fkey FOREIGN KEY (booking_container_id) REFERENCES freight.booking_container(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_contract_signatures
|
||
ADD CONSTRAINT booking_contract_signatures_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_contract_signatures
|
||
ADD CONSTRAINT booking_contract_signatures_signature_file_id_fkey FOREIGN KEY (signature_file_id) REFERENCES freight.files(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_document_review
|
||
ADD CONSTRAINT booking_document_review_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id);
|
||
|
||
ALTER TABLE ONLY freight.booking_handovers
|
||
ADD CONSTRAINT booking_handovers_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.booking_handovers
|
||
ADD CONSTRAINT booking_handovers_edr_assignment_id_fkey FOREIGN KEY (edr_assignment_id) REFERENCES freight.last_mile_vehicle_assignments(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_handovers
|
||
ADD CONSTRAINT booking_handovers_truck_assignment_id_fkey FOREIGN KEY (truck_assignment_id) REFERENCES freight.customer_truck_assignments(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.booking_review_note
|
||
ADD CONSTRAINT booking_review_note_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT bookings_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id);
|
||
|
||
ALTER TABLE ONLY freight.bookings
|
||
ADD CONSTRAINT bookings_contract_route_id_fkey FOREIGN KEY (contract_route_id) REFERENCES freight.contract_routes(id);
|
||
|
||
ALTER TABLE ONLY freight.clearance_incidents
|
||
ADD CONSTRAINT clearance_incidents_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.clearance_milestones
|
||
ADD CONSTRAINT clearance_milestones_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.clearance_milestones
|
||
ADD CONSTRAINT clearance_milestones_clearance_cycle_id_fkey FOREIGN KEY (clearance_cycle_id) REFERENCES freight.contract_clearance_cycles(id);
|
||
|
||
ALTER TABLE ONLY freight.clearance_milestones
|
||
ADD CONSTRAINT clearance_milestones_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.compliance_records
|
||
ADD CONSTRAINT compliance_records_vehicle_id_fkey FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id);
|
||
|
||
ALTER TABLE ONLY freight.contract_approval_steps
|
||
ADD CONSTRAINT contract_approval_steps_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_cargo_scope
|
||
ADD CONSTRAINT contract_cargo_scope_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_clearance_cycles
|
||
ADD CONSTRAINT contract_clearance_cycles_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_document_review
|
||
ADD CONSTRAINT contract_document_review_clearance_cycle_id_fkey FOREIGN KEY (clearance_cycle_id) REFERENCES freight.contract_clearance_cycles(id);
|
||
|
||
ALTER TABLE ONLY freight.contract_document_review
|
||
ADD CONSTRAINT contract_document_review_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_document_revisions
|
||
ADD CONSTRAINT contract_document_revisions_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_rate_snapshots
|
||
ADD CONSTRAINT contract_rate_snapshots_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_review_notes
|
||
ADD CONSTRAINT contract_review_notes_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_routes
|
||
ADD CONSTRAINT contract_routes_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contract_signatures
|
||
ADD CONSTRAINT contract_signatures_contract_id_fkey FOREIGN KEY (contract_id) REFERENCES freight.contracts(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.contracts
|
||
ADD CONSTRAINT contracts_renewal_of_id_fkey FOREIGN KEY (renewal_of_id) REFERENCES freight.contracts(id);
|
||
|
||
ALTER TABLE ONLY freight.customer_truck_assignments
|
||
ADD CONSTRAINT customer_truck_assignments_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.customer_truck_containers
|
||
ADD CONSTRAINT customer_truck_containers_assignment_id_fkey FOREIGN KEY (assignment_id) REFERENCES freight.customer_truck_assignments(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.customer_truck_containers
|
||
ADD CONSTRAINT customer_truck_containers_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.facility_handling_events
|
||
ADD CONSTRAINT facility_handling_events_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
|
||
|
||
ALTER TABLE ONLY freight.facility_handling_events
|
||
ADD CONSTRAINT facility_handling_events_inventory_id_fkey FOREIGN KEY (inventory_id) REFERENCES freight.warehouse_inventory(id);
|
||
|
||
ALTER TABLE ONLY freight.facility_handling_events
|
||
ADD CONSTRAINT facility_handling_events_train_schedule_id_fkey FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id);
|
||
|
||
ALTER TABLE ONLY freight.facility_handling_events
|
||
ADD CONSTRAINT facility_handling_events_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.first_mile_vehicle_assignments
|
||
ADD CONSTRAINT first_mile_vehicle_assignments_first_mile_id_fkey FOREIGN KEY (first_mile_id) REFERENCES freight.first_mile(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.first_mile_vehicle_assignments
|
||
ADD CONSTRAINT first_mile_vehicle_assignments_vehicle_id_fkey FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id);
|
||
|
||
ALTER TABLE ONLY freight.cargoes
|
||
ADD CONSTRAINT fk_cargoes_booking FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.cargoes
|
||
ADD CONSTRAINT fk_cargoes_wagon_allocation FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT fk_containers_booking FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT fk_containers_booking_container FOREIGN KEY (booking_container_id) REFERENCES freight.booking_container(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.containers
|
||
ADD CONSTRAINT fk_containers_wagon_allocation FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.fuel_consumption
|
||
ADD CONSTRAINT fk_fuel_consumption_vehicle FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.fuel_purchases
|
||
ADD CONSTRAINT fk_fuel_purchases_vehicle FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.invoice_lines
|
||
ADD CONSTRAINT fk_invoice_lines_invoice FOREIGN KEY (invoice_id) REFERENCES freight.invoices(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.invoices
|
||
ADD CONSTRAINT fk_invoices_company FOREIGN KEY (company_id) REFERENCES freight.companies(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.invoices
|
||
ADD CONSTRAINT fk_invoices_company_profile FOREIGN KEY (company_profile_id) REFERENCES freight.company_profiles(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.invoices
|
||
ADD CONSTRAINT fk_invoices_payment FOREIGN KEY (payment_id) REFERENCES freight.payments(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.maintenance_costs
|
||
ADD CONSTRAINT fk_maintenance_schedule FOREIGN KEY (maintenance_schedule_id) REFERENCES freight.maintenance_schedules(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.payment_refunds
|
||
ADD CONSTRAINT fk_payment_refunds_payment FOREIGN KEY (payment_id) REFERENCES freight.payments(id) ON DELETE RESTRICT;
|
||
|
||
ALTER TABLE ONLY freight.train_schedule_bookings
|
||
ADD CONSTRAINT fk_train_schedule_bookings_booking FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedule_bookings
|
||
ADD CONSTRAINT fk_train_schedule_bookings_schedule FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.train_schedules
|
||
ADD CONSTRAINT fk_train_schedules_destination FOREIGN KEY (destination_station_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedules
|
||
ADD CONSTRAINT fk_train_schedules_origin FOREIGN KEY (origin_station_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedules
|
||
ADD CONSTRAINT fk_train_schedules_route FOREIGN KEY (route_id) REFERENCES freight.routes(id);
|
||
|
||
ALTER TABLE ONLY freight.train_schedules
|
||
ADD CONSTRAINT fk_train_schedules_train_set FOREIGN KEY (train_set_id) REFERENCES freight.train_sets(id);
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT fk_train_set_wagons_physical_wagon FOREIGN KEY (physical_wagon_id) REFERENCES freight.wagons(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT fk_train_set_wagons_train_set FOREIGN KEY (train_set_id) REFERENCES freight.train_sets(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT fk_train_set_wagons_wagon_type FOREIGN KEY (wagon_type_id) REFERENCES freight.wagon_types(id);
|
||
|
||
ALTER TABLE ONLY freight.train_sets
|
||
ADD CONSTRAINT fk_train_sets_locomotive FOREIGN KEY (locomotive_id) REFERENCES freight.locomotives(id);
|
||
|
||
ALTER TABLE ONLY freight.vehicles
|
||
ADD CONSTRAINT fk_vehicles_truck_type FOREIGN KEY (truck_type_id) REFERENCES freight.truck_types(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
|
||
ADD CONSTRAINT fk_wabl_allocation FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
|
||
ADD CONSTRAINT fk_wabl_booking FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
|
||
ADD CONSTRAINT fk_wabl_cargo_type FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_container_items
|
||
ADD CONSTRAINT fk_waci_allocation FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_container_items
|
||
ADD CONSTRAINT fk_waci_booking_container FOREIGN KEY (booking_container_id) REFERENCES freight.booking_container(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_container_items
|
||
ADD CONSTRAINT fk_waci_container FOREIGN KEY (container_id) REFERENCES freight.containers(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_allocation_container_items
|
||
ADD CONSTRAINT fk_waci_container_type FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_booking_allocations
|
||
ADD CONSTRAINT fk_wagon_booking_allocations_booking FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_booking_allocations
|
||
ADD CONSTRAINT fk_wagon_booking_allocations_wagon FOREIGN KEY (train_set_wagon_id) REFERENCES freight.train_set_wagons(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT fk_wagons_current_train_schedule FOREIGN KEY (current_train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagons
|
||
ADD CONSTRAINT fk_wagons_train_set_wagon FOREIGN KEY (train_set_wagon_id) REFERENCES freight.train_set_wagons(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT fk_wm_transfer_request FOREIGN KEY (transfer_request_id) REFERENCES freight.wagon_transfer_requests(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_transfer_requests
|
||
ADD CONSTRAINT fk_wtr_from_yard FOREIGN KEY (from_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_transfer_requests
|
||
ADD CONSTRAINT fk_wtr_to_yard FOREIGN KEY (to_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_transfer_requests
|
||
ADD CONSTRAINT fk_wtr_wagon_type FOREIGN KEY (wagon_type_id) REFERENCES freight.wagon_types(id);
|
||
|
||
ALTER TABLE ONLY freight.gps_devices
|
||
ADD CONSTRAINT gps_devices_vehicle_id_fkey FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_vehicle_assignments
|
||
ADD CONSTRAINT last_mile_vehicle_assignments_last_mile_id_fkey FOREIGN KEY (last_mile_id) REFERENCES freight.last_mile(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.last_mile_vehicle_assignments
|
||
ADD CONSTRAINT last_mile_vehicle_assignments_vehicle_id_fkey FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id);
|
||
|
||
ALTER TABLE ONLY freight.last_mile_vehicle_containers
|
||
ADD CONSTRAINT last_mile_vehicle_containers_assignment_id_fkey FOREIGN KEY (assignment_id) REFERENCES freight.last_mile_vehicle_assignments(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.maintenance_intervals
|
||
ADD CONSTRAINT maintenance_intervals_vehicle_id_fkey FOREIGN KEY (vehicle_id) REFERENCES freight.vehicles(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.priority_rule_change_requests
|
||
ADD CONSTRAINT priority_rule_change_requests_priority_config_id_fkey FOREIGN KEY (priority_config_id) REFERENCES freight.priority_configs(id);
|
||
|
||
ALTER TABLE ONLY freight.rate_change_requests
|
||
ADD CONSTRAINT rate_change_requests_rate_id_fkey FOREIGN KEY (rate_id) REFERENCES freight.rates(id);
|
||
|
||
ALTER TABLE ONLY freight.route_milestones
|
||
ADD CONSTRAINT route_milestones_route_id_fkey FOREIGN KEY (route_id) REFERENCES freight.routes(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.route_milestones
|
||
ADD CONSTRAINT route_milestones_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.routes
|
||
ADD CONSTRAINT routes_destination_yard_id_fkey FOREIGN KEY (destination_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.routes
|
||
ADD CONSTRAINT routes_origin_yard_id_fkey FOREIGN KEY (origin_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.train_checkpoint_events
|
||
ADD CONSTRAINT train_checkpoint_events_train_schedule_id_fkey FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT train_set_wagons_alight_yard_id_fkey FOREIGN KEY (alight_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.train_set_wagons
|
||
ADD CONSTRAINT train_set_wagons_board_yard_id_fkey FOREIGN KEY (board_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT wagon_movements_booking_id_fkey FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT wagon_movements_from_yard_id_fkey FOREIGN KEY (from_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT wagon_movements_to_yard_id_fkey FOREIGN KEY (to_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT wagon_movements_train_schedule_id_fkey FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE SET NULL;
|
||
|
||
ALTER TABLE ONLY freight.wagon_movements
|
||
ADD CONSTRAINT wagon_movements_wagon_id_fkey FOREIGN KEY (wagon_id) REFERENCES freight.wagons(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inventory_movement
|
||
ADD CONSTRAINT warehouse_inventory_movement_inventory_id_fkey FOREIGN KEY (inventory_id) REFERENCES freight.warehouse_inventory(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inventory
|
||
ADD CONSTRAINT warehouse_inventory_warehouse_id_fkey FOREIGN KEY (warehouse_id) REFERENCES freight.warehouses(id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inventory
|
||
ADD CONSTRAINT warehouse_inventory_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.warehouse_yards(id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_inventory
|
||
ADD CONSTRAINT warehouse_inventory_zone_id_fkey FOREIGN KEY (zone_id) REFERENCES freight.warehouse_zones(id);
|
||
|
||
ALTER TABLE ONLY freight.warehouse_loadings
|
||
ADD CONSTRAINT warehouse_loadings_warehouse_inventory_id_fkey FOREIGN KEY (warehouse_inventory_id) REFERENCES freight.warehouse_inventory(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouse_yard_cargo_types
|
||
ADD CONSTRAINT warehouse_yard_cargo_types_cargo_type_id_fkey FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouse_yard_cargo_types
|
||
ADD CONSTRAINT warehouse_yard_cargo_types_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.warehouse_yards(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouse_yards
|
||
ADD CONSTRAINT warehouse_yards_warehouse_id_fkey FOREIGN KEY (warehouse_id) REFERENCES freight.warehouses(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.warehouse_zones
|
||
ADD CONSTRAINT warehouse_zones_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.warehouse_yards(id) ON DELETE CASCADE;
|
||
|
||
ALTER TABLE ONLY freight.yard_distances
|
||
ADD CONSTRAINT yard_distances_from_yard_id_fkey FOREIGN KEY (from_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.yard_distances
|
||
ADD CONSTRAINT yard_distances_to_yard_id_fkey FOREIGN KEY (to_yard_id) REFERENCES freight.yards(id);
|
||
|
||
ALTER TABLE ONLY freight.yard_facilities
|
||
ADD CONSTRAINT yard_facilities_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.yards(id) ON DELETE CASCADE;
|
||
`;
|
||
|
||
export class FreightBaseline3250000000000 implements MigrationInterface {
|
||
name = "FreightBaseline3250000000000";
|
||
|
||
public async up(queryRunner: QueryRunner): Promise<void> {
|
||
// Databases migrated before the squash already have every object below.
|
||
if (await queryRunner.hasTable("freight.bookings")) return;
|
||
|
||
await queryRunner.query(STRUCTURE_SQL);
|
||
for (const sql of Object.values(FREIGHT_SEED_SQL)) {
|
||
await queryRunner.query(sql);
|
||
}
|
||
await queryRunner.query(FOREIGN_KEYS_SQL);
|
||
}
|
||
|
||
public async down(): Promise<void> {
|
||
// Reverting the baseline means dropping the entire freight schema, which is
|
||
// never what a `migration:revert` intends. Drop the database instead.
|
||
throw new Error(
|
||
"FreightBaseline3250000000000 is a squashed baseline and cannot be reverted",
|
||
);
|
||
}
|
||
}
|