Skip to content

Commit

Permalink
fix(dumps): update test dump
Browse files Browse the repository at this point in the history
  • Loading branch information
pYassine committed Feb 5, 2024
1 parent 059710e commit 1ea8c92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fileignoreconfig:
- filename: packages/backend/src/_migrations/1707149718714-auto-migration.ts
checksum: aa054cce95ed17cdb3b5d3dd94ad82b56ff60d2b9dd002f15a617806e4883fda
- filename: packages/backend/src/_migrations/_init-db/1603812391580-pr-env-create-database.ts
checksum: 70ed8fe7ffe93c23a4eeec14ae0e99637f257617c41bfcd63af6e52d39ba1044
checksum: e9749edc537ce0d902f2750870816c75a3e57a79955f5d92174c7b0f19b4267e
- filename: packages/backend/src/_portail-admin/portail-admin-login/portail-admin-login.controller.spec.ts
checksum: 3bd78f8919cbe14a45484825d6ce816bc7e2a0456fc53b9beeb1fedb6bdb061a
- filename: packages/backend/src/_portail-usager/portail-usager-login/portail-usagers-login.controller.spec.ts
Expand Down
Binary file modified _scripts/db/dumps/domifa_test.postgres.custom.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ async function createTables(queryRunner: QueryRunner) {
accompagnement bool NULL,
"accompagnementDetail" text NULL,
"situationPro" text NULL,
"situationProDetail" text NULL,
CONSTRAINT "PK_1da0e283293a4bb213ffd0ef280" PRIMARY KEY (uuid),
CONSTRAINT "UQ_5f4220e5a3e6d2ee1c1bb7fd3d2" UNIQUE ("structureId", "usagerRef"),
CONSTRAINT "UQ_aa19c17fc79f4e4a648643096f9" UNIQUE ("usagerUUID"),
Expand Down Expand Up @@ -722,6 +723,7 @@ async function createTables(queryRunner: QueryRunner) {
CREATE INDEX "IDX_ef9fade8e5a6dac06ef5031986" ON public.interactions USING btree (type);
CREATE INDEX "IDX_f9c3ee379ce68d4acfe4199a33" ON public.interactions USING btree ("usagerUUID");
CREATE INDEX idx_interactions_date ON public.interactions USING btree ("structureId", "usagerUUID", "dateInteraction");
CREATE INDEX idx_interactions_type ON public.interactions USING btree ("structureId", "usagerUUID", type); `
CREATE INDEX idx_interactions_type ON public.interactions USING btree ("structureId", "usagerUUID", type);
`
);
}

0 comments on commit 1ea8c92

Please sign in to comment.