Skip to content

Instantly share code, notes, and snippets.

@eyedol
Created January 27, 2012 10:59
Show Gist options
  • Save eyedol/1688279 to your computer and use it in GitHub Desktop.
Save eyedol/1688279 to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS `adsense_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ad_border` varchar(15) NOT NULL,
`ad_pub_id` varchar(25) NOT NULL,
`ad_channel` varchar(25) NOT NULL,
`ad_size` int(11) NOT NULL,
`ad_type` varchar(11) NOT NULL,
`ad_placement` int(11) NOT NULL,
`ad_border_color` varchar(15) NOT NULL DEFAULT 'FFFFFF',
`ad_text_color` varchar(15) NOT NULL DEFAULT '000000',
`ad_bg_color` varchar(15) NOT NULL DEFAULT 'FFFFFF',
`ad_link_color` varchar(15) NOT NULL DEFAULT '0000FF',
`ad_uri_color` varchar(15) NOT NULL DEFAULT '008000',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment