Files
leonwww/dns/cleanup_migration.sql
Leonmmcoset f99cfb9a20
Some checks failed
Build Flumi / Build Flumi (Linux, 4.4.1, ubuntu-latest, linux) (push) Failing after 1h4m23s
Build Flumi / Build Flumi (Windows Desktop, 4.4.1, windows-latest, windows) (push) Has been cancelled
awa
2025-11-08 17:02:34 +08:00

8 lines
252 B
SQL

-- 清理部分应用的迁移记录
DELETE FROM _sqlx_migrations WHERE version = 1;
-- 可选:也可以删除所有迁移记录,从头开始
-- TRUNCATE TABLE _sqlx_migrations;
-- 显示清理后的迁移表状态
SELECT * FROM _sqlx_migrations;