Created
February 20, 2013 20:46
-
-
Save someara/4999463 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* 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