-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
déplacement de fichiers et suppression de champs inutilisés
- Loading branch information
Showing
15 changed files
with
190 additions
and
200 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from suggestions.tasks.airflow_logic.db_normalize_suggestion_task import * # noqa | ||
from suggestions.tasks.airflow_logic.db_read_suggestiontoprocess_task import * # noqa | ||
from suggestions.tasks.airflow_logic.db_write_validsuggestions_task import * # noqa | ||
from suggestions.tasks.airflow_logic.launch_compute_carte_acteur_task import * # noqa |
4 changes: 3 additions & 1 deletion
4
...low_logic/db_normalize_suggestion_task.py → ...low_logic/db_normalize_suggestion_task.py
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
2 changes: 1 addition & 1 deletion
2
...logic/db_read_suggestiontoprocess_task.py → ...logic/db_read_suggestiontoprocess_task.py
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
2 changes: 1 addition & 1 deletion
2
...w_logic/db_write_validsuggestions_task.py → ...w_logic/db_write_validsuggestions_task.py
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...business_logic/db_normalize_suggestion.py → ...business_logic/db_normalize_suggestion.py
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
File renamed without changes.
File renamed without changes.
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,55 @@ | ||
# Generated by Django 5.1.4 on 2025-01-09 14:04 | ||
|
||
import django.contrib.gis.db.models.fields | ||
import django.core.validators | ||
import django.db.models.deletion | ||
import django.db.models.functions.datetime | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="BANCache", | ||
fields=[ | ||
( | ||
"id", | ||
models.BigAutoField( | ||
auto_created=True, | ||
primary_key=True, | ||
serialize=False, | ||
verbose_name="ID", | ||
), | ||
), | ||
("adresse", models.CharField(blank=True, max_length=255, null=True)), | ||
( | ||
"code_postal", | ||
models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
("ville", models.CharField(blank=True, max_length=255, null=True)), | ||
( | ||
"location", | ||
django.contrib.gis.db.models.fields.PointField( | ||
blank=True, null=True, srid=4326 | ||
), | ||
), | ||
("ban_returned", models.JSONField(blank=True, null=True)), | ||
( | ||
"modifie_le", | ||
models.DateTimeField( | ||
auto_now=True, | ||
db_default=django.db.models.functions.datetime.Now(), | ||
), | ||
), | ||
], | ||
options={ | ||
"verbose_name": "Cache BAN", | ||
"verbose_name_plural": "Cache BAN", | ||
}, | ||
), | ||
] |
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
Oops, something went wrong.