migrate: remove JSON, DB-only — mo_data, server, scripts, prompts (27 files)

This commit is contained in:
知微
2026-07-03 12:12:05 +08:00
parent b1a79d962c
commit b3bedc8024
43 changed files with 8272 additions and 7449 deletions
+5
View File
@@ -0,0 +1,5 @@
import sqlite3
db = sqlite3.connect('/home/hmo/web-dashboard/data/mofin.db')
sql = db.execute("SELECT sql FROM sqlite_master WHERE name='holding_strategies'").fetchone()
print(sql[0][:600] if sql else "NOT FOUND")
db.close()