diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-18 23:17:08 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-18 23:17:08 +0200 |
commit | fbb4637a77dc5982b4e694dd31a0aa7d11cec17c (patch) | |
tree | 2b277a09a8dacff187211cacfad7da5b5a3dda9b /client/migrations/0002_usercode_user.py | |
download | scout-subs-fbb4637a77dc5982b4e694dd31a0aa7d11cec17c.tar.gz scout-subs-fbb4637a77dc5982b4e694dd31a0aa7d11cec17c.zip |
initial commit
Diffstat (limited to 'client/migrations/0002_usercode_user.py')
-rw-r--r-- | client/migrations/0002_usercode_user.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/client/migrations/0002_usercode_user.py b/client/migrations/0002_usercode_user.py new file mode 100644 index 0000000..aaaf193 --- /dev/null +++ b/client/migrations/0002_usercode_user.py @@ -0,0 +1,21 @@ +# Generated by Django 3.0.7 on 2020-06-18 16:41 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('client', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='usercode', + name='user', + field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), + ), + ] |