refactor(migration): rename data migration files and update migration logic

This commit renames the data migration files for clarity, changing `dataMigrate.html` to `dataRefactorMigrate.html` and updating the corresponding service imports. It also enhances the migration logic by implementing a new `app_state` table structure and removing deprecated migration files, streamlining the overall migration process.
This commit is contained in:
fullex
2025-08-09 22:37:20 +08:00
parent ff965402cd
commit 92eb5aed7f
17 changed files with 138 additions and 246 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Cherry Studio - Data Refactor Migration</title>
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:;" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body id="root">
<script type="module" src="/src/windows/dataRefactorMigrate/entryPoint.tsx"></script>
</body>
</html>