Skip to content

Instantly share code, notes, and snippets.

@dewski
Created June 26, 2010 23:31
Show Gist options
  • Save dewski/454444 to your computer and use it in GitHub Desktop.
Save dewski/454444 to your computer and use it in GitHub Desktop.
CREATE TABLE tags (
`id` int(11) PRIMARY KEY,
`name` varchar(255)
)
CREATE TABLE post_tags (
`post_id` int(11),
`tag_id` int(11)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment