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,