fix lastfm models

This commit is contained in:
lyx0 2023-03-04 20:25:17 +00:00
parent eb692020f7
commit c82ae739e5

View file

@ -1,7 +1,7 @@
CREATE TABLE IF NOT EXISTS lastfm_users (
id bigserial PRIMARY KEY,
twitch_login text UNIQUE NOT NULL,
twitch_id text NOT NULL,
twitch_login text NOT NULL,
twitch_id text UNIQUE NOT NULL,
lastfm_username text NOT NULL
);