Created
November 24, 2011 09:19
-
-
Save Stanton/1390945 to your computer and use it in GitHub Desktop.
Release notes schema
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
# Dump of table release_notes | |
# ------------------------------------------------------------ | |
CREATE TABLE `release_notes` ( | |
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, | |
`version_id` int(11) DEFAULT NULL, | |
`detail` text, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |
# Dump of table versions | |
# ------------------------------------------------------------ | |
CREATE TABLE `versions` ( | |
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, | |
`version_number` varchar(10) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment