Created
January 27, 2012 10:59
-
-
Save eyedol/1688279 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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