From 3157741860a58acc7a44929b89b035888ac08f36 Mon Sep 17 00:00:00 2001 From: FreneticScribbler Date: Sun, 26 Jan 2020 15:34:44 +0000 Subject: [PATCH] CHORE: Squash migrations --- RIGS/migrations/0036_profile_is_approved.py | 5 +++++ ...20200111_1829.py => 0037_approve_legacy.py} | 0 RIGS/migrations/0038_profile_last_emailed.py | 18 ------------------ 3 files changed, 5 insertions(+), 18 deletions(-) rename RIGS/migrations/{0037_auto_20200111_1829.py => 0037_approve_legacy.py} (100%) delete mode 100644 RIGS/migrations/0038_profile_last_emailed.py diff --git a/RIGS/migrations/0036_profile_is_approved.py b/RIGS/migrations/0036_profile_is_approved.py index 515e00a9..3fdb5af7 100644 --- a/RIGS/migrations/0036_profile_is_approved.py +++ b/RIGS/migrations/0036_profile_is_approved.py @@ -15,4 +15,9 @@ class Migration(migrations.Migration): name='is_approved', field=models.BooleanField(default=False), ), + migrations.AddField( + model_name='profile', + name='last_emailed', + field=models.DateTimeField(blank=True, null=True), + ), ] diff --git a/RIGS/migrations/0037_auto_20200111_1829.py b/RIGS/migrations/0037_approve_legacy.py similarity index 100% rename from RIGS/migrations/0037_auto_20200111_1829.py rename to RIGS/migrations/0037_approve_legacy.py diff --git a/RIGS/migrations/0038_profile_last_emailed.py b/RIGS/migrations/0038_profile_last_emailed.py deleted file mode 100644 index bca52b8a..00000000 --- a/RIGS/migrations/0038_profile_last_emailed.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.0.13 on 2020-01-25 01:48 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('RIGS', '0037_auto_20200111_1829'), - ] - - operations = [ - migrations.AddField( - model_name='profile', - name='last_emailed', - field=models.DateTimeField(blank=True, null=True), - ), - ]