Skip to content

Commit 6e1f790

Browse files
committed
migration fix after merge conflict
1 parent 6260d99 commit 6e1f790

File tree

2 files changed

+1
-223
lines changed

2 files changed

+1
-223
lines changed

migrations/changes-1744015064.sql

-222
This file was deleted.

modules/core/infrastructure/persistence/schema/core-schema.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ CREATE TABLE passports (
4444
remarks text, -- Additional notes (e.g., travel restrictions, visa endorsements).
4545
created_at timestamp with time zone DEFAULT now(),
4646
updated_at timestamp with time zone DEFAULT now(),
47-
UNIQUE (tenant_id, passport_number, series)
47+
CONSTRAINT passports_tenant_passport_number_series_key UNIQUE (tenant_id, passport_number, series)
4848
);
4949

5050
CREATE TABLE companies (

0 commit comments

Comments
 (0)