31 lines
2.0 KiB
SQL
31 lines
2.0 KiB
SQL
INSERT INTO v3.app_user (id,email,username,hashed_password,full_name,role_id,is_active,created_at,updated_at) VALUES
|
|
(1,'admin@rshb.ru','admin','{admin_password}','admin',1,true,'2026-05-20 11:09:16.987331+03',NULL),
|
|
(2,'ispolnitel@rshb.ru','isp1','{isp_password}','Роль Исполнитель Первый',2,true,'2026-05-20 11:00:51.811967+03','2026-06-17 11:51:01.123054+03');
|
|
SELECT setval('v3.app_user_id_seq', 2);
|
|
|
|
INSERT INTO v3.org_unit (id,title,is_active,is_ssp) VALUES
|
|
(1,'Test_SSP',true,true),
|
|
(2,'Test РФ',true,false);
|
|
SELECT setval('v3.org_unit_id_seq', 2);
|
|
|
|
INSERT INTO v3.user_org (id,user_id,org_unit_id) VALUES
|
|
(1,1,2),
|
|
(2,1,1),
|
|
(3,2,2);
|
|
SELECT setval('v3.user_org_id_seq', 3);
|
|
|
|
INSERT INTO v3.budget_form (id,form_type_code,"year",created_by,created_at,updated_by,updated_at,org_unit_id) VALUES
|
|
(1,'FORM_1',2027,NULL,'2026-05-06 16:57:38.066371',NULL,'2026-06-11 14:35:53.783017',1);
|
|
SELECT setval('v3.budget_form_id_seq', 1);
|
|
|
|
INSERT INTO v3.budget_line (id,budget_form_id,expense_item_id,"name",internal_order,vsp_id,project_id,justification,created_by,created_at,updated_by,updated_at,direction) VALUES
|
|
(1,1,88,'1234',NULL,NULL,NULL,NULL,NULL,'2026-05-06 16:58:05.793083',NULL,'2026-06-22 17:41:54.255313','Support');
|
|
SELECT setval('v3.budget_line_id_seq', 1);
|
|
|
|
INSERT INTO v3.form_phase (budget_form_id,sheet,phase_code,"role",column_keys,opens_at,closes_at) VALUES
|
|
(1,'AHR','test','DFIP','{{plan.q1}}','2026-05-05 03:00:00+03','2026-06-06 03:00:00+03');
|
|
|
|
INSERT INTO v3.vsp (id,branch_id,reg_number,address,format,opened_at,placement_type,staff_count,total_area,closed_at,is_active,updated_at,is_deleted,created_at,created_by,system_code,updated_by,vsp_type,notes,location_form,numbers,rent_contract_num,rent_end_date) VALUES
|
|
(1,2,'Тестовый всп 1','Тестовая 12','укукк','2026-05-07','ывс',2026,230,'2026-06-16',false,'2026-06-18 15:46:38.611903',false,'2026-06-04 14:36:59.737727',1,'1233',91,'','','встроенное помещение',NULL,'',NULL);
|
|
SELECT setval('v3.vsp_id_seq', 1);
|