feat(g0v0-migrate): implement g0v0 migration system with plugin support (#97)

For details please view the PR.

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
MingxuanGame
2025-12-13 17:56:34 +08:00
committed by GitHub
parent 511150cc4c
commit bb181d930a
13 changed files with 749 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
[project]
name = "g0v0-migrations"
version = "0.1.0"
description = "Migration tools for g0v0-server and plugins."
requires-python = ">=3.12"
dependencies = [
"aiomysql>=0.3.2",
"alembic>=1.17.2",
"click>=8.3.0",
"pydantic>=2.11.9",
"pydantic-settings>=2.12.0",
]
[project.scripts]
g0v0-migrate = "g0v0_migrations.__main__:g0v0_migrate"