请在 Supabase Dashboard → SQL Editor 跑下面这段 SQL 后刷新页面,即可看到完整字段:
ALTER TABLE windsurf_accounts ADD COLUMN IF NOT EXISTS auth_type text, ADD COLUMN IF NOT EXISTS auth1_token text, ADD COLUMN IF NOT EXISTS session_token text;
| # | 邮箱 | 密码 | 套餐 | 类型 | 状态 | 配额 | 每日 | 到期 | 最后登录 | Auth1 Token | Session | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ idx + 1 }} | {{ row.email }} | {{ row.password || '-' }} | {{ row.used_quota || 0 }}/{{ row.total_quota || 0 }} | {{ row.daily_quota_remaining_percent?.toFixed(0) }}% - | {{ row.subscription_expires_at ? formatDate(row.subscription_expires_at) : '-' }} | {{ row.last_login_at ? timeAgo(row.last_login_at) : '-' }} | {{ shortToken(row.auth1_token) }} - | {{ shortToken(row.session_token) }} - | ||||
| 暂无数据 |
{{ item.value }}
{{ item.label }}