From cc1d700f7d92b308766918e8402438ff1e9d9095 Mon Sep 17 00:00:00 2001 From: thomas girod Date: Thu, 29 Aug 2024 11:54:32 +0200 Subject: [PATCH] add forgotten migration --- sas/migrations/0003_sasfile.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sas/migrations/0003_sasfile.py diff --git a/sas/migrations/0003_sasfile.py b/sas/migrations/0003_sasfile.py new file mode 100644 index 00000000..a66b7e25 --- /dev/null +++ b/sas/migrations/0003_sasfile.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.14 on 2024-08-29 09:53 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0038_alter_preferences_receive_weekmail"), + ("sas", "0002_auto_20161119_1241"), + ] + + operations = [ + migrations.CreateModel( + name="SasFile", + fields=[], + options={ + "proxy": True, + "indexes": [], + "constraints": [], + }, + bases=("core.sithfile",), + ), + ]