api/migrations/2023-12-31-104738_artists/up.sql

16 lines
339 B
MySQL
Raw Normal View History

2024-01-01 02:18:33 +00:00
-- Your SQL goes here
create table if not exists artists
(
id varchar(24) default nanoid(24),
name varchar(255) NOT NULL,
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)
);