Initial commit

This commit is contained in:
2026-04-23 16:58:11 +08:00
commit 267eba1eca
2582 changed files with 273338 additions and 0 deletions

19
ruoyi-ui/recover.py Normal file
View File

@@ -0,0 +1,19 @@
tables = [
"tt_box",
"tt_box_open_chance",
"tt_box_ornaments",
"tt_box_records",
"tt_ornament",
"tt_upgrade_fail_ornaments",
"tt_upgrade_ornaments",
"tt_upgrade_record",
"tt_roll",
"tt_roll_jackpot",
"tt_roll_jackpot_ornaments",
"tt_roll_user_prize"
]
for table in tables:
print(f"""RENAME TABLE {table} TO {table}_new, {table}_old TO {table};""")