diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 17:08:24 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 17:08:35 +0100 |
commit | ecd2c19b265e3974707da0d9b8e260749dcf4a9f (patch) | |
tree | a47b8e820e98e39fca7108c1f98bc500bf0c98d9 /ctrack/register/migrations/0005_auto_20201019_0928.py | |
parent | 07c741c785761cfa0e9895e35ba7e1f1549ce676 (diff) |
renamed a field in a model to date and look what I need! new migrations and fixed tests
Diffstat (limited to 'ctrack/register/migrations/0005_auto_20201019_0928.py')
-rw-r--r-- | ctrack/register/migrations/0005_auto_20201019_0928.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ctrack/register/migrations/0005_auto_20201019_0928.py b/ctrack/register/migrations/0005_auto_20201019_0928.py deleted file mode 100644 index ed6f6b5..0000000 --- a/ctrack/register/migrations/0005_auto_20201019_0928.py +++ /dev/null @@ -1,24 +0,0 @@ -# Generated by Django 3.1.2 on 2020-10-19 09:28 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('organisations', '0002_auto_20201015_1955'), - ('register', '0004_auto_20201017_1958'), - ] - - operations = [ - migrations.AlterField( - model_name='singledatetimeevent', - name='participants', - field=models.ManyToManyField(to='organisations.Person'), - ), - migrations.AlterField( - model_name='singledatetimeevent', - name='type_descriptor', - field=models.CharField(choices=[('MEETING', 'Meeting'), ('PHONE_CALL', 'Phone Call'), ('VIDEO_CALL', 'Video Call'), ('EMAIL', 'Email'), ('NOTE', 'Note')], max_length=50, verbose_name='Event Type'), - ), - ] |