From 986001814cdfeae63fcebce2e51466bf55bf776e Mon Sep 17 00:00:00 2001 From: "Andrey K. Choi" Date: Wed, 26 Nov 2025 19:16:20 +0900 Subject: [PATCH] recreate table migration --- .../web/migrations/0020_recreate_project_table.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 smartsoltech/web/migrations/0020_recreate_project_table.py diff --git a/smartsoltech/web/migrations/0020_recreate_project_table.py b/smartsoltech/web/migrations/0020_recreate_project_table.py new file mode 100644 index 0000000..44fa504 --- /dev/null +++ b/smartsoltech/web/migrations/0020_recreate_project_table.py @@ -0,0 +1,13 @@ +# Generated by Django 5.1.1 on 2025-11-26 10:16 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('web', '0019_add_project_slug'), + ] + + operations = [ + ]