用设备 Cookie 和授权表记住本机已验证账号,登录页按确认样图做成门户,不再把密码写进浏览器。 Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: multica-agent <github@multica.ai>
17 lines
603 B
Python
17 lines
603 B
Python
from .m0001_adopt_legacy import MIGRATION as M0001_ADOPT_LEGACY
|
|
from .m0002_job_runs import MIGRATION as M0002_JOB_RUNS
|
|
from .m0003_llm_audit import MIGRATION as M0003_LLM_AUDIT
|
|
from .m0004_mentor_notes import MIGRATION as M0004_MENTOR_NOTES
|
|
from .m0005_account_switch_grants import MIGRATION as M0005_ACCOUNT_SWITCH_GRANTS
|
|
from .runner import Migration, MigrationError, MigrationRunner
|
|
|
|
MIGRATIONS = (
|
|
M0001_ADOPT_LEGACY,
|
|
M0002_JOB_RUNS,
|
|
M0003_LLM_AUDIT,
|
|
M0004_MENTOR_NOTES,
|
|
M0005_ACCOUNT_SWITCH_GRANTS,
|
|
)
|
|
|
|
__all__ = ["MIGRATIONS", "Migration", "MigrationError", "MigrationRunner"]
|