diff options
Diffstat (limited to 'app/trading/migrations/0004_rename_luxtrademodel_luxtrade.py')
-rw-r--r-- | app/trading/migrations/0004_rename_luxtrademodel_luxtrade.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/trading/migrations/0004_rename_luxtrademodel_luxtrade.py b/app/trading/migrations/0004_rename_luxtrademodel_luxtrade.py new file mode 100644 index 0000000..bcb59d3 --- /dev/null +++ b/app/trading/migrations/0004_rename_luxtrademodel_luxtrade.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.4 on 2021-07-14 07:18 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0003_luxtrademodel_status'), + ] + + operations = [ + migrations.RenameModel( + old_name='LuxTradeModel', + new_name='LuxTrade', + ), + ] |