Skip to content

Instantly share code, notes, and snippets.

@mayhem
Created August 17, 2020 11:57
Show Gist options
  • Save mayhem/9c278d7c9395008961e3cd2ee12d228c to your computer and use it in GitHub Desktop.
Save mayhem/9c278d7c9395008961e3cd2ee12d228c to your computer and use it in GitHub Desktop.
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