Files
heygermany-e2e-mrg4m7dd/db/sqlite-seed.sql
e2e 6c231d1d36
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 10:52:27 +02:00

121 lines
3.9 KiB
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

INSERT INTO countries (
iso3,
iso2,
name,
name_de,
name_es,
name_tr,
name_uk,
created_at,
updated_at
)
VALUES
('DEU', 'DE', 'Germany', 'Deutschland', 'Alemania', 'Almanya', 'Німеччина', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('UKR', 'UA', 'Ukraine', 'Ukraine', 'Ucrania', 'Ukrayna', 'Україна', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('PHL', 'PH', 'Philippines', 'Philippinen', 'Filipinas', 'Filipinler', 'Філіппіни', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('TUR', 'TR', 'Turkey', 'Türkei', 'Turquía', 'Türkiye', 'Туреччина', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('BIH', 'BA', 'Bosnia & Herzegovina', 'Bosnien und Herzegowina', 'Bosnia y Herzegovina', 'Bosna Hersek', 'Боснія і Герцеговина', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('ALB', 'AL', 'Albania', 'Albanien', 'Albania', 'Arnavutluk', 'Албанія', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('VNM', 'VN', 'Vietnam', 'Vietnam', 'Vietnam', 'Vietnam', 'Вʼєтнам', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('MEX', 'MX', 'Mexico', 'Mexiko', 'México', 'Meksika', 'Мексика', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('IND', 'IN', 'India', 'Indien', 'India', 'Hindistan', 'Індія', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('TUN', 'TN', 'Tunisia', 'Tunesien', 'Túnez', 'Tunus', 'Туніс', '2026-01-01 00:00:00', '2026-01-01 00:00:00'),
('SYR', 'SY', 'Syria', 'Syrien', 'Siria', 'Suriye', 'Сирія', '2026-01-01 00:00:00', '2026-01-01 00:00:00')
ON CONFLICT (iso3) DO NOTHING;
INSERT INTO auth_user (
id,
name,
email,
email_verified,
role,
type,
created_at,
updated_at
)
VALUES
(
'6c128508-14c6-41cc-b5a5-c6f217721678',
'E2E Company User',
'e2e-company-login@heygermany.test',
TRUE,
'owner',
'company',
'2026-01-01 00:00:00+00',
'2026-01-01 00:00:00+00'
),
(
'76af7b4e-e324-43d4-923e-f3df383fd0fc',
'E2E Backoffice User',
'e2e-backoffice-login@heygermany.test',
TRUE,
'owner',
'backoffice',
'2026-01-01 00:00:00+00',
'2026-01-01 00:00:00+00'
)
ON CONFLICT (id) DO NOTHING;
INSERT INTO auth_account (
id,
account_id,
provider_id,
user_id,
password,
created_at,
updated_at
)
VALUES
(
'8f3de67e-f4e9-4b31-91ea-6da4c08b1f10',
'6c128508-14c6-41cc-b5a5-c6f217721678',
'credential',
'6c128508-14c6-41cc-b5a5-c6f217721678',
'4fcf2418ac9c409baeecfb0fa705a6a7:1f352aff88203912220cd50146da65391e66fbfbbbcec7557492619f1bd79d06e7bf2d3aef3a5faff198032c06320715075e94c72a776db948a62a989eb31e82',
'2026-01-01 00:00:00+00',
'2026-01-01 00:00:00+00'
),
(
'2131c58e-dbe8-45c1-ae2b-9c4c88df62d3',
'76af7b4e-e324-43d4-923e-f3df383fd0fc',
'credential',
'76af7b4e-e324-43d4-923e-f3df383fd0fc',
'2e3bdc23f2828fa67e28cc9cb9a5f2b4:c8f8bb481946d362d6cd2af91a671bf341ed4c3ff535ad7cd435b9d43eca65f664247c1556e14ea198f3a39c295f3359399125b8ee2041844b7fd5122f90277b',
'2026-01-01 00:00:00+00',
'2026-01-01 00:00:00+00'
)
ON CONFLICT (id) DO NOTHING;
INSERT INTO user (
user_id,
email,
name,
email_verified_at,
created_at,
last_updated_at,
role,
type
)
VALUES
(
'6c128508-14c6-41cc-b5a5-c6f217721678',
'e2e-company-login@heygermany.test',
'E2E Company User',
'2026-01-01 00:00:00',
'2026-01-01 00:00:00',
'2026-01-01 00:00:00',
'owner',
'company'
),
(
'76af7b4e-e324-43d4-923e-f3df383fd0fc',
'e2e-backoffice-login@heygermany.test',
'E2E Backoffice User',
'2026-01-01 00:00:00',
'2026-01-01 00:00:00',
'2026-01-01 00:00:00',
'owner',
'backoffice'
)
ON CONFLICT (user_id) DO NOTHING;