From 4e97195404d14c1bfb5f79cb37cd6fd73339e087 Mon Sep 17 00:00:00 2001 From: Samuel Tariku Date: Sat, 23 Aug 2025 21:56:00 +0300 Subject: [PATCH] feat: added veli test user --- db/data/seed_data.sql | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/db/data/seed_data.sql b/db/data/seed_data.sql index 732a346..860d7e5 100644 --- a/db/data/seed_data.sql +++ b/db/data/seed_data.sql @@ -75,6 +75,21 @@ VALUES ( CURRENT_TIMESTAMP, FALSE, NULL + ), + ( + 5, + 'Test', + 'Veli', + 'test.veli@example.com', + NULL, + crypt('password@123', gen_salt('bf'))::bytea, + 'customer', + TRUE, + FALSE, + CURRENT_TIMESTAMP, + CURRENT_TIMESTAMP, + FALSE, + NULL ); -- Supported Operations INSERT INTO supported_operations (id, name, description) @@ -158,7 +173,7 @@ VALUES (1, 1, 1, 2); INSERT INTO companies ( id, name, - slug + slug, admin_id, wallet_id, deducted_percentage, @@ -169,7 +184,7 @@ INSERT INTO companies ( VALUES ( 1, 'FortuneBets', - 'fortunebets', + 'fortunebets', 2, 3, 0.10,