pipeline 库 users 表早期手工建错(last_login_fail NOT NULL), 导致成功登录 SET last_login_fail=NULL 被转成时间戳。 新增 migration/fix_users_schema.sql 对齐 models 定义: - created_at timestamp→date - last_login/last_login_fail NOT NULL→NULL DEFAULT NULL - login_fail_count int→smallint NOT NULL - 幂等补 sync_from 列