2023-09-23 17:40:17 +02:00
INSERT INTO " user " ( name , is_cox , is_admin , is_guest , pw ) VALUES ( ' admin ' , true , true , false , ' $argon2id$v=19$m=19456,t=2,p=1$dS/X5/sPEKTj4Rzs/CuvzQ$4P4NCw4Ukhv80/eQYTsarHhnw61JuL1KMx/L9dm82YM ' ) ;
2023-04-10 14:25:31 +02:00
INSERT INTO " user " ( name , is_cox , is_admin , is_guest , pw ) VALUES ( ' rower ' , false , false , false , ' $argon2id$v=19$m=19456,t=2,p=1$dS/X5/sPEKTj4Rzs/CuvzQ$jWKzDmI0jqT2dqINFt6/1NjVF4Dx15n07PL1ZMBmFsY ' ) ;
INSERT INTO " user " ( name , is_cox , is_admin , is_guest , pw ) VALUES ( ' guest ' , false , false , true , ' $argon2id$v=19$m=19456,t=2,p=1$dS/X5/sPEKTj4Rzs/CuvzQ$GF6gizbI79Bh0zA9its8S0gram956v+YIV8w8VpwJnQ ' ) ;
INSERT INTO " user " ( name , is_cox , is_admin , is_guest , pw ) VALUES ( ' cox ' , true , false , false , ' $argon2id$v=19$m=19456,t=2,p=1$dS/X5/sPEKTj4Rzs/CuvzQ$lnWzHx3DdqS9GQyWYel82kIotZuK2wk9EyfhPFtjNzs ' ) ;
INSERT INTO " user " ( name ) VALUES ( ' new ' ) ;
2023-04-26 16:54:53 +02:00
INSERT INTO " user " ( name , is_cox , is_admin , is_guest , pw ) VALUES ( ' cox2 ' , true , false , false , ' $argon2id$v=19$m=19456,t=2,p=1$dS/X5/sPEKTj4Rzs/CuvzQ$lnWzHx3DdqS9GQyWYel82kIotZuK2wk9EyfhPFtjNzs ' ) ;
2023-04-28 19:08:17 +02:00
INSERT INTO " user " ( name , is_cox , is_admin , is_guest , pw ) VALUES ( ' rower2 ' , false , false , false , ' $argon2id$v=19$m=19456,t=2,p=1$dS/X5/sPEKTj4Rzs/CuvzQ$jWKzDmI0jqT2dqINFt6/1NjVF4Dx15n07PL1ZMBmFsY ' ) ;
2023-04-26 12:21:30 +02:00
2023-04-28 19:08:17 +02:00
INSERT INTO " trip_details " ( planned_starting_time , max_people , day , notes ) VALUES ( ' 10:00 ' , 2 , ' 1970-01-01 ' , ' trip_details for a planned event ' ) ;
2023-04-28 17:59:12 +02:00
INSERT INTO " planned_event " ( name , planned_amount_cox , trip_details_id ) VALUES ( ' test-planned-event ' , 2 , 1 ) ;
2023-04-26 16:54:53 +02:00
2023-04-28 17:59:12 +02:00
INSERT INTO " trip_details " ( planned_starting_time , max_people , day , notes ) VALUES ( ' 11:00 ' , 1 , ' 1970-01-02 ' , ' trip_details for trip from cox ' ) ;
2023-04-26 16:54:53 +02:00
INSERT INTO " trip " ( cox_id , trip_details_id ) VALUES ( 4 , 2 ) ;
2023-05-03 16:38:15 +02:00
INSERT INTO " trip_type " ( name , desc , question , icon ) VALUES ( ' Regatta ' , ' Regatta! ' , ' Kein normales Event. Das ist eine Regatta! Willst du wirklich teilnehmen? ' , ' 🏅 ' ) ;
INSERT INTO " trip_type " ( name , desc , question , icon ) VALUES ( ' Lange Ausfahrt ' , ' Lange Ausfahrt! ' , ' Das ist eine lange Ausfahrt! Willst du wirklich teilnehmen? ' , ' 💪 ' ) ;
INSERT INTO " trip_type " ( name , desc , question , icon ) VALUES ( ' Wanderfahrt ' , ' Wanderfahrt! ' , ' Kein normales Event. Das ist eine Wanderfahrt! Bitte überprüfe ob du alle Anforderungen erfüllst. Willst du wirklich teilnehmen? ' , ' ⛱ ' ) ;
2023-07-22 13:10:13 +02:00
INSERT INTO " location " ( name ) VALUES ( ' Linz ' ) ;
INSERT INTO " location " ( name ) VALUES ( ' Ottensheim ' ) ;
INSERT INTO " boat " ( name , amount_seats , location_id ) VALUES ( ' Haichenbach ' , 1 , 1 ) ;
INSERT INTO " boat " ( name , amount_seats , location_id , owner ) VALUES ( ' private_boat_from_rower ' , 1 , 1 , 2 ) ;
INSERT INTO " boat " ( name , amount_seats , location_id ) VALUES ( ' Joe ' , 2 , 1 ) ;
INSERT INTO " boat " ( name , amount_seats , location_id ) VALUES ( ' Kaputtes Boot :-( ' , 7 , 1 ) ;
2023-07-30 20:29:48 +02:00
INSERT INTO " boat " ( name , amount_seats , location_id ) VALUES ( ' Sehr kaputtes Boot :-(( ' , 7 , 1 ) ;
2023-08-05 13:21:35 +02:00
INSERT INTO " boat " ( name , amount_seats , location_id ) VALUES ( ' Ottensheim Boot ' , 7 , 2 ) ;
2023-07-22 13:10:13 +02:00
INSERT INTO " logbook_type " ( name ) VALUES ( ' Wanderfahrt ' ) ;
INSERT INTO " logbook_type " ( name ) VALUES ( ' Regatta ' ) ;
2023-09-24 09:48:01 +02:00
INSERT INTO " logbook " ( boat_id , shipmaster , shipmaster_only_steering , departure ) VALUES ( 2 , 2 , false , ' 1142-12-24 10:00 ' ) ;
INSERT INTO " logbook " ( boat_id , shipmaster , shipmaster_only_steering , departure , arrival , destination , distance_in_km ) VALUES ( 1 , 4 , false , ' 1141-12-24 10:00 ' , ' 2141-12-24 15:00 ' , ' Ottensheim ' , 25 ) ;
INSERT INTO " logbook " ( boat_id , shipmaster , shipmaster_only_steering , departure , arrival , destination , distance_in_km ) VALUES ( 3 , 4 , false , ' 1142-12-24 10:00 ' , ' 2142-12-24 11:30 ' , ' Ottensheim + Regattastrecke ' , 29 ) ;
2023-07-22 13:10:13 +02:00
INSERT INTO " rower " ( logbook_id , rower_id ) VALUES ( 3 , 3 ) ;
INSERT INTO " boat_damage " ( boat_id , desc , user_id_created , created_at ) VALUES ( 4 , ' Dolle bei Position 2 fehlt ' , 5 , ' 2142-12-24 15:02 ' ) ;
2023-07-30 20:29:48 +02:00
INSERT INTO " boat_damage " ( boat_id , desc , user_id_created , created_at , lock_boat ) VALUES ( 5 , ' TOHT ' , 5 , ' 2142-12-24 15:02 ' , 1 ) ;