From 6d5372e1f8a86ada6a9c468d13ab805dd05d4ead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20L=C3=A1szl=C3=B3?= <rlacko99@gmail.com> Date: Fri, 12 Mar 2021 21:23:02 +0100 Subject: [PATCH] add migrations --- .../migrations/0002_profile_extra_bits.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/account/migrations/0002_profile_extra_bits.py diff --git a/src/account/migrations/0002_profile_extra_bits.py b/src/account/migrations/0002_profile_extra_bits.py new file mode 100644 index 0000000..4aa3be9 --- /dev/null +++ b/src/account/migrations/0002_profile_extra_bits.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2021-03-12 20:20 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='profile', + name='extra_bits', + field=models.IntegerField(default=0), + ), + ] -- GitLab