Skip to content

Commit

Permalink
squash migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilouf committed Feb 11, 2025
1 parent f35d521 commit a4b222a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions lemarche/django_shepherd/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Generated by Django 4.2.17 on 2025-02-04 17:52
# Generated by Django 5.1.6 on 2025-02-11 08:38

import django.db.models.deletion
import django.utils.timezone
from django.conf import settings
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
Expand Down Expand Up @@ -34,10 +36,16 @@ class Migration(migrations.Migration):
(
"url",
models.URLField(
help_text="URL de la page à guider",
help_text="URL de la page à guider", max_length=250, unique=True, verbose_name="URL"
),
),
(
"url_path",
models.CharField(
help_text="C'est l'identifiant unique de l'url",
max_length=250,
unique=True,
verbose_name="URL",
verbose_name="chemin URL",
),
),
],
Expand Down

0 comments on commit a4b222a

Please sign in to comment.