Skip to content

Instantly share code, notes, and snippets.

@RX14
Created September 1, 2015 21:37
Show Gist options
  • Select an option

  • Save RX14/23190873148dbcea9164 to your computer and use it in GitHub Desktop.

Select an option

Save RX14/23190873148dbcea9164 to your computer and use it in GitHub Desktop.
CREATE TABLE "content" (
"sha1" blob(20) PRIMARY KEY NOT NULL,
"title" text,
"description" text,
"type" varchar(20),
"user_id" integer
);
CREATE TABLE "users" (
"id" blob(16) PRIMARY KEY NOT NULL,
"username" varchar(20) UNIQUE
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment