This commit is contained in:
2024-07-01 06:01:50 +03:00
parent a6f7a9d65f
commit 386ee7e460
29 changed files with 727 additions and 296 deletions

View File

@@ -1,3 +1,7 @@
from alembic.env import run_migrations_offline
a = [
(1, [1, 4, 5, ]),
(2, [1, 2, 3, 4, 5, ]),
]
run_migrations_offline()
updates_list = sorted(a, key=lambda x: x[1], reverse=True)
print(updates_list)