-- insert initial test data-- the id is hardcode to enable references between further test dataINSERTINTOowner(ID,NAME,CREATED_AT,UPDATED_AT)VALUES(1,'Fred',CURRENT_TIMESTAMP(),CURRENT_TIMESTAMP()),(2,'Julia',CURRENT_TIMESTAMP(),CURRENT_TIMESTAMP()),(3,'Kim',CURRENT_TIMESTAMP(),CURRENT_TIMESTAMP());
INSERTINTOhorse(id,name,description,score,birthday,race,image_path,owner,created_at,updated_at)VALUES(1,'Dorian','The fastest horse on Earth',5,PARSEDATETIME('2019-01-01','yyyy-MM-dd'),'ARABIAN','dorian.png',1,CURRENT_TIMESTAMP(),CURRENT_TIMESTAMP()),(2,'Katrina','Not slow, but not fast either',3,PARSEDATETIME('2005-01-01','yyyy-MM-dd'),'MORGAN','katrina.png',2,CURRENT_TIMESTAMP(),CURRENT_TIMESTAMP()),(2,'Andrew','Slowest of the bund',1,PARSEDATETIME('1992-01-01','yyyy-MM-dd'),'APPALOOSA','andrew.png',3,CURRENT_TIMESTAMP(),CURRENT_TIMESTAMP())