create table if not exists "public"."series" ( "id" uuid default gen_random_uuid() not null primary key, "name" text not null, "created" timestamptz default now() not null, "updated" timestamptz default now() not null );