From d9f56196f2a794d4e655aff75a8eaa285c43bbb9 Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Wed, 10 Feb 2021 18:37:33 -0700 Subject: [PATCH] migration fixing typo on slice fk --- .../migrations/0008_auto_20210211_0136.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 qrtr_account/migrations/0008_auto_20210211_0136.py diff --git a/qrtr_account/migrations/0008_auto_20210211_0136.py b/qrtr_account/migrations/0008_auto_20210211_0136.py new file mode 100644 index 0000000..6842203 --- /dev/null +++ b/qrtr_account/migrations/0008_auto_20210211_0136.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.3 on 2021-02-11 01:36 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('qrtr_account', '0007_auto_20210128_0325'), + ] + + operations = [ + migrations.RenameField( + model_name='transaction', + old_name='Slice', + new_name='slice', + ), + ]