-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [UniteLegale] Remove / Set "CaractereEmployeur" to null * [Etablissement] Add new data & remove sync for null fields * [Insee] Update BASE URL to v3.11 * [SyncInsee] Minimum date for v3.11 * [SyncInsee] Remove min date
- Loading branch information
Showing
14 changed files
with
109 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": true, | ||
"source.organizeImports": true | ||
"source.fixAll": "explicit", | ||
"source.organizeImports": "explicit" | ||
}, | ||
"[rust]": { | ||
"editor.defaultFormatter": "rust-lang.rust-analyzer", | ||
"editor.formatOnSave": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ALTER TABLE "public"."etablissement" | ||
DROP COLUMN IF EXISTS "dernier_numero_voie", | ||
DROP COLUMN IF EXISTS "indice_repetition_dernier_numero_voie", | ||
DROP COLUMN IF EXISTS "identifiant_adresse", | ||
DROP COLUMN IF EXISTS "coordonnee_lambert_x", | ||
DROP COLUMN IF EXISTS "coordonnee_lambert_y"; | ||
|
||
ALTER TABLE "public"."etablissement_staging" | ||
DROP COLUMN IF EXISTS "dernier_numero_voie", | ||
DROP COLUMN IF EXISTS "indice_repetition_dernier_numero_voie", | ||
DROP COLUMN IF EXISTS "identifiant_adresse", | ||
DROP COLUMN IF EXISTS "coordonnee_lambert_x", | ||
DROP COLUMN IF EXISTS "coordonnee_lambert_y"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ALTER TABLE "public"."etablissement" | ||
ADD COLUMN "dernier_numero_voie" text DEFAULT NULL, | ||
ADD COLUMN "indice_repetition_dernier_numero_voie" text DEFAULT NULL, | ||
ADD COLUMN "identifiant_adresse" text DEFAULT NULL, | ||
ADD COLUMN "coordonnee_lambert_x" text DEFAULT NULL, | ||
ADD COLUMN "coordonnee_lambert_y" text DEFAULT NULL; | ||
|
||
ALTER TABLE "public"."etablissement_staging" | ||
ADD COLUMN "dernier_numero_voie" text DEFAULT NULL, | ||
ADD COLUMN "indice_repetition_dernier_numero_voie" text DEFAULT NULL, | ||
ADD COLUMN "identifiant_adresse" text DEFAULT NULL, | ||
ADD COLUMN "coordonnee_lambert_x" text DEFAULT NULL, | ||
ADD COLUMN "coordonnee_lambert_y" text DEFAULT NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters