race

<what is it used for?>

<what is it used for?>

source '0_create_keyspace.cql';

// START-racetype
CREATE TYPE IF NOT EXISTS cycling.race (
   race_title text,
   race_date timestamp,
   race_time text);
// END-racetype