Merge branch 'freight/develop' of https://github.com/Tria-plc/edr-platform into feature/trains-management

This commit is contained in:
hagiye
2026-06-05 21:07:36 +03:00
22 changed files with 882 additions and 321 deletions

View File

@@ -28,48 +28,50 @@ export class CreatePaymentTable1780639311366 implements MigrationInterface {
`);
await queryRunner.query(`
CREATE TABLE freight.payments (
id uuid NOT NULL DEFAULT uuid_generate_v4(),
CREATE TABLE freight.payments (
id uuid NOT NULL DEFAULT uuid_generate_v4(),
ref_id varchar(255) NOT NULL,
ref_id varchar(255) NOT NULL,
type freight.payments_type_enum NOT NULL,
type freight.payments_type_enum NOT NULL,
method freight.payments_method_enum NOT NULL,
method freight.payments_method_enum NOT NULL,
currency freight.payments_currency_enum NOT NULL,
currency freight.payments_currency_enum NOT NULL,
amount numeric NOT NULL,
amount numeric NOT NULL,
raw_initiation jsonb NOT NULL DEFAULT '{}'::jsonb,
raw_initiation jsonb NOT NULL DEFAULT '{}'::jsonb,
client_action json,
client_action json,
merchant_order_id varchar(255) NOT NULL,
merchant_order_id varchar(255) NOT NULL,
transaction_id varchar(255),
transaction_id varchar(255),
status freight.payments_status_enum NOT NULL DEFAULT 'action-required',
status freight.payments_status_enum NOT NULL DEFAULT 'action-required',
paid_at date,
paid_at date,
refunded_at date,
refunded_at date,
expires_at date,
expires_at date,
failer_code varchar(30),
failer_code varchar(30),
failer_message varchar(255),
failer_message varchar(255),
created_at TIMESTAMP NOT NULL DEFAULT now(),
reason varchar(255),
CONSTRAINT PK_payments PRIMARY KEY (id),
created_at TIMESTAMP NOT NULL DEFAULT now(),
CONSTRAINT UQ_payments_merchant_order_id UNIQUE (merchant_order_id),
CONSTRAINT PK_payments PRIMARY KEY (id),
CONSTRAINT UQ_payments_transaction_id UNIQUE (transaction_id)
);
`);
CONSTRAINT UQ_payments_merchant_order_id UNIQUE (merchant_order_id),
CONSTRAINT UQ_payments_transaction_id UNIQUE (transaction_id)
);
`);
}
public async down(queryRunner: QueryRunner): Promise<void> {