5 lines
337 B
SQL
5 lines
337 B
SQL
-- Modify "Person" table
|
|
ALTER TABLE "public"."Person" DROP CONSTRAINT "uni_Person_ResidentIdentityNumber", ALTER COLUMN "ResidentIdentityNumber" TYPE text;
|
|
-- Create index "idx_resident_identity" to table: "Person"
|
|
CREATE UNIQUE INDEX "idx_resident_identity" ON "public"."Person" ("ResidentIdentityNumber") WHERE ("DeletedAt" IS NULL);
|