7 lines
370 B
SQL
7 lines
370 B
SQL
-- Test-only seed: a minimal user row so getSession resolves against `user`.
|
|
-- This file is only used by the function-tests harness (never in the sandbox
|
|
-- or production).
|
|
INSERT INTO "user" (id, name, email, email_verified, created_at, updated_at)
|
|
VALUES ('user-001', 'Test User', 'test@example.com', 1, datetime('now'), datetime('now'))
|
|
ON CONFLICT (id) DO NOTHING;
|