From 4dc07c24ebc342222f911f66ccda0f40a04b6d89 Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Thu, 6 Jul 2023 04:23:14 +0530 Subject: [PATCH] Adding migrations --- .../0006_alter_smartcontract_address.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 backend/api_app/smartcontract/migrations/0006_alter_smartcontract_address.py diff --git a/backend/api_app/smartcontract/migrations/0006_alter_smartcontract_address.py b/backend/api_app/smartcontract/migrations/0006_alter_smartcontract_address.py new file mode 100644 index 0000000..64fcfe7 --- /dev/null +++ b/backend/api_app/smartcontract/migrations/0006_alter_smartcontract_address.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.19 on 2023-07-05 22:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('smartcontract', '0005_alter_smartcontract_abi'), + ] + + operations = [ + migrations.AlterField( + model_name='smartcontract', + name='address', + field=models.CharField(max_length=42), + ), + ]