Skip to content

Instantly share code, notes, and snippets.

@andrastudio
Created January 16, 2013 01:16
Show Gist options
  • Save andrastudio/4543782 to your computer and use it in GitHub Desktop.
Save andrastudio/4543782 to your computer and use it in GitHub Desktop.
SQL Dump for Slides table
--
-- Table structure for table `slides`
--
CREATE TABLE IF NOT EXISTS `slides` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`image` varchar(255) NOT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) 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