Files
AIclinicalresearch/backend/create_mock_user.sql
HaHafeng 303dd78c54 feat(aia): Protocol Agent MVP complete with one-click generation and Word export
- Add one-click research protocol generation with streaming output

- Implement Word document export via Pandoc integration

- Add dynamic dual-panel layout with resizable split pane

- Implement collapsible content for StatePanel stages

- Add conversation history management with title auto-update

- Fix scroll behavior, markdown rendering, and UI layout issues

- Simplify conversation creation logic for reliability
2026-01-25 19:16:36 +08:00

42 lines
410 B
SQL

-- 在 public.users 中创建 mock 用户
-- 用于 RVW 模块的测试
INSERT INTO public.users (id, email, password, name, role, status, kb_quota, kb_used, is_trial, created_at, updated_at)
VALUES (
'user-mock-001',
'mock@test.com',
'$2b$10$mockhashedpassword123456789',
'测试用户',
'user',
'active',
3,
0,
false,
NOW(),
NOW()
)
ON CONFLICT (id) DO NOTHING;