Skip to content

Instantly share code, notes, and snippets.

@gabidavila
Last active August 29, 2015 14:06
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 gabidavila/cb4f47ad36082103f46a to your computer and use it in GitHub Desktop.
Save gabidavila/cb4f47ad36082103f46a to your computer and use it in GitHub Desktop.
releases
CREATE TABLE `releases` (
`id` int(11) NOT NULL,
`source` varchar(45) DEFAULT NULL,
`packagename` varchar(255) DEFAULT NULL,
`package_id` varchar(45) DEFAULT NULL,
`isbn` char(13) DEFAULT NULL,
`book_title` varchar(255) DEFAULT NULL,
`year` char(4) DEFAULT NULL,
`issn` varchar(45) DEFAULT NULL,
`series_title` varchar(127) DEFAULT NULL,
`volume` int(11) DEFAULT NULL,
`imprint` varchar(127) DEFAULT NULL,
`available_online` date DEFAULT NULL,
`shortcut_url` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment