Merge pull request #800 from ae-utbm/forgotten-migrations

add forgotten migration
This commit is contained in:
thomas girod 2024-08-29 12:53:21 +02:00 committed by GitHub
commit 14402f7537
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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",),
),
]