Files
2026-06-09 18:02:04 +02:00

9 lines
165 B
SQL

create table if not exists bands (
id uuid primary key default gen_random_uuid(),
name text not null,
genre text,
country text,
stage text,
time text
);