-- Your SQL goes here CREATE TABLE IF NOT EXISTS tracks ( id VARCHAR(24) DEFAULT nanoid(24), title VARCHAR(255) NOT NULL, duration_ms INT NOT NULL DEFAULT 0, created_at TIMESTAMP DEFAULT now() NOT NULL, updated_at TIMESTAMP, -- music services spotify_id VARCHAR(21) UNIQUE, tidal_id VARCHAR(10) UNIQUE, PRIMARY KEY (id) );