Skip to content

Instantly share code, notes, and snippets.

@hobodave
Created September 9, 2008 23:41
Show Gist options
  • Save hobodave/9795 to your computer and use it in GitHub Desktop.
Save hobodave/9795 to your computer and use it in GitHub Desktop.
CREATE TABLE forum
(
id INTEGER,
name VARCHAR(25),
PRIMARY KEY(id)
);
CREATE TABLE post
(
forum_id INTEGER,
content TEXT
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment