From b8fac6ff71613d22f51f897a16d37610e393e738 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Thu, 15 Jul 2021 15:22:59 -0400 Subject: trad: added migration --- app/trading/migrations/0008_luxtrade_notes.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/trading/migrations/0008_luxtrade_notes.py (limited to 'app') diff --git a/app/trading/migrations/0008_luxtrade_notes.py b/app/trading/migrations/0008_luxtrade_notes.py new file mode 100644 index 0000000..a22df5e --- /dev/null +++ b/app/trading/migrations/0008_luxtrade_notes.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-07-15 15:21 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0007_alter_luxtrade_status'), + ] + + operations = [ + migrations.AddField( + model_name='luxtrade', + name='notes', + field=models.TextField(blank=True, null=True), + ), + ] -- cgit v1.2.3-70-g09d2