aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/users/migrations/0004_auto_20200524_1945.py
diff options
context:
space:
mode:
Diffstat (limited to 'ctrack/users/migrations/0004_auto_20200524_1945.py')
-rw-r--r--ctrack/users/migrations/0004_auto_20200524_1945.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/ctrack/users/migrations/0004_auto_20200524_1945.py b/ctrack/users/migrations/0004_auto_20200524_1945.py
new file mode 100644
index 0000000..8839fd2
--- /dev/null
+++ b/ctrack/users/migrations/0004_auto_20200524_1945.py
@@ -0,0 +1,23 @@
+# Generated by Django 3.0.5 on 2020-05-24 19:45
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('users', '0003_auto_20200522_1527'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='UserProfile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ],
+ ),
+ migrations.RemoveField(
+ model_name='user',
+ name='oes_user',
+ ),
+ ]