Skip to content

Instantly share code, notes, and snippets.

@someara
Created February 20, 2013 20:46
Show Gist options
  • Save someara/4999463 to your computer and use it in GitHub Desktop.
Save someara/4999463 to your computer and use it in GitHub Desktop.
/* A table for myface users */
CREATE TABLE users
(
id CHAR (32) NOT NULL,
PRIMARY KEY(id),
user_name VARCHAR(64),
neck_beard INTEGER
);
/* Initial records */
INSERT INTO users ( id, user_name, neck_beard ) VALUES ( uuid(), 'jtimberman', 4 );
INSERT INTO users ( id, user_name, neck_beard ) VALUES ( uuid(), 'someara', 5 );
INSERT INTO users ( id, user_name, neck_beard ) VALUES ( uuid(), 'jwinsor', 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment