Skip to content

Instantly share code, notes, and snippets.

@buritica
Created January 22, 2012 03:12
Show Gist options
  • Save buritica/1655249 to your computer and use it in GitHub Desktop.
Save buritica/1655249 to your computer and use it in GitHub Desktop.
Zambo Schema
CREATE TABLE `content_media` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`description` text,
`status` tinyint(1) DEFAULT '1',
`type` int(11) DEFAULT NULL,
`event_id` int(11) DEFAULT NULL,
`gallery_id` int(11) DEFAULT NULL,
`created` int(11) DEFAULT NULL,
`updated` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment