Skip to content

Instantly share code, notes, and snippets.

@queirozfcom
Created May 1, 2015 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save queirozfcom/218cf014e07257253139 to your computer and use it in GitHub Desktop.
Save queirozfcom/218cf014e07257253139 to your computer and use it in GitHub Desktop.
create table "users" (
"id" BIGSERIAL NOT NULL PRIMARY KEY,
"username" VARCHAR(254) NOT NULL,
"email" VARCHAR(254),
"password" VARCHAR(254) NOT NULL,
"created" timestamp default now() NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment