mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 00:21:55 +00:00
6 lines
144 B
SQL
6 lines
144 B
SQL
CREATE TABLE IF NOT EXISTS genres (
|
|
uuid uuid PRIMARY KEY,
|
|
name VARCHAR(255) NOT NULL
|
|
);
|
|
|
|
CREATE INDEX genresNameLookup ON genres (name) |