diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-31 14:43:53 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-31 14:43:53 +0200 |
commit | dfcf0e776c6f4fff8e3b4077f8e1055e328e4d12 (patch) | |
tree | 916f28ed81ce97a9742a4fda2947f5afd3e8b52b /client/migrations/0002_usercode_user.py | |
parent | clean up document tmp files (diff) | |
download | scout-subs-0.2.tar.gz scout-subs-0.2.zip |
remove old migrations0.2
Diffstat (limited to 'client/migrations/0002_usercode_user.py')
-rw-r--r-- | client/migrations/0002_usercode_user.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/client/migrations/0002_usercode_user.py b/client/migrations/0002_usercode_user.py deleted file mode 100644 index aaaf193..0000000 --- a/client/migrations/0002_usercode_user.py +++ /dev/null @@ -1,21 +0,0 @@ -# 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), - ), - ] |