From a6168306c08e8d5b207b9acc48869180d194ff01 Mon Sep 17 00:00:00 2001 From: Justin Choquette Date: Mon, 7 Aug 2023 14:10:19 -0400 Subject: User subsystem Change-Id: Ibef4ede9b2d6a3ea465f79a9b5cbcc821afbccae Signed-off-by: Justin Choquette --- src/booking/migrations/0012_auto_20230802_1810.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/booking/migrations/0012_auto_20230802_1810.py (limited to 'src/booking/migrations/0012_auto_20230802_1810.py') diff --git a/src/booking/migrations/0012_auto_20230802_1810.py b/src/booking/migrations/0012_auto_20230802_1810.py new file mode 100644 index 0000000..36095a1 --- /dev/null +++ b/src/booking/migrations/0012_auto_20230802_1810.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2 on 2023-08-02 18:10 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('booking', '0011_booking_aggregateid'), + ] + + operations = [ + migrations.AlterField( + model_name='booking', + name='aggregateId', + field=models.CharField(blank=True, max_length=36), + ), + ] -- cgit 1.2.3-korg