-
-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathseed.sql
More file actions
26 lines (24 loc) · 670 Bytes
/
seed.sql
File metadata and controls
26 lines (24 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- Seed test data for integration tests
-- Run AFTER GORM has migrated the schema (i.e., after API starts)
-- Test user
INSERT INTO users (id, email, api_key, timezone, subscription_name, created_at, updated_at)
VALUES (
'test-user-id',
'test@httpsms.com',
'test-user-api-key',
'UTC',
'pro-monthly',
NOW(),
NOW()
) ON CONFLICT (id) DO NOTHING;
-- System user (for event queue auth)
INSERT INTO users (id, email, api_key, timezone, subscription_name, created_at, updated_at)
VALUES (
'system-user-id',
'system@httpsms.com',
'system-user-api-key',
'UTC',
'pro-monthly',
NOW(),
NOW()
) ON CONFLICT (id) DO NOTHING;