Skip to content

Instantly share code, notes, and snippets.

@Stanton
Created November 24, 2011 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stanton/1390945 to your computer and use it in GitHub Desktop.
Save Stanton/1390945 to your computer and use it in GitHub Desktop.
Release notes schema
# 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