Created
August 17, 2020 11:57
-
-
Save mayhem/9c278d7c9395008961e3cd2ee12d228c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE missing_musicbrainz_data ( | |
id SERIAL, -- PK | |
user_id INTEGER NOT NULL, --FK to "user".id | |
source TEXT NOT NULL, | |
data JSONB NOT NULL, | |
created TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment