Created
June 26, 2010 23:31
-
-
Save dewski/454444 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
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