aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/users/migrations
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-14 17:08:54 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-14 17:08:54 +0100
commitbdcc5d9d79f355eac6c2717b0b364b847b9a8115 (patch)
treefded47125bf031632db498a937225c64e841a56c /ctrack/users/migrations
parent14fa59eee9ba35ad462b5b17229a09164f5d716d (diff)
reset a lot of migrations - all unit tests passing - now has response required fields for simple event
Diffstat (limited to 'ctrack/users/migrations')
-rw-r--r--ctrack/users/migrations/0001_initial.py8
-rw-r--r--ctrack/users/migrations/0002_auto_20201013_1250.py18
2 files changed, 4 insertions, 22 deletions
diff --git a/ctrack/users/migrations/0001_initial.py b/ctrack/users/migrations/0001_initial.py
index df3cd12..ec91581 100644
--- a/ctrack/users/migrations/0001_initial.py
+++ b/ctrack/users/migrations/0001_initial.py
@@ -1,4 +1,4 @@
-# Generated by Django 2.2.12 on 2020-08-27 12:44
+# Generated by Django 3.1.2 on 2020-10-14 16:05
import django.contrib.auth.models
import django.contrib.auth.validators
@@ -12,8 +12,8 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
+ ('auth', '0012_alter_user_first_name_max_length'),
('organisations', '0001_initial'),
- ('auth', '0011_update_proxy_permissions'),
]
operations = [
@@ -25,7 +25,7 @@ class Migration(migrations.Migration):
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),
('username', models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username')),
- ('first_name', models.CharField(blank=True, max_length=30, verbose_name='first name')),
+ ('first_name', models.CharField(blank=True, max_length=150, verbose_name='first name')),
('last_name', models.CharField(blank=True, max_length=150, verbose_name='last name')),
('email', models.EmailField(blank=True, max_length=254, verbose_name='email address')),
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
@@ -33,7 +33,7 @@ class Migration(migrations.Migration):
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
('name', models.CharField(blank=True, max_length=255, verbose_name='Name of User')),
('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.Group', verbose_name='groups')),
- ('stakeholder', models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='organisations.Stakeholder')),
+ ('stakeholder', models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='organisations.stakeholder')),
('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.Permission', verbose_name='user permissions')),
],
options={
diff --git a/ctrack/users/migrations/0002_auto_20201013_1250.py b/ctrack/users/migrations/0002_auto_20201013_1250.py
deleted file mode 100644
index 0ce36be..0000000
--- a/ctrack/users/migrations/0002_auto_20201013_1250.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 3.1.2 on 2020-10-13 12:50
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('users', '0001_initial'),
- ]
-
- operations = [
- migrations.AlterField(
- model_name='user',
- name='first_name',
- field=models.CharField(blank=True, max_length=150, verbose_name='first name'),
- ),
- ]