View Single Post
  #103  
Old 16th October 2008, 15:39
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
Code:
CREATE TABLE IF NOT EXISTS `stylesheets` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `uri` varchar(255) collate latin1_general_ci NOT NULL default '',
  `name` varchar(64) collate latin1_general_ci NOT NULL default '',
  `phpbb_style` varchar(30) collate latin1_general_ci default 'default_phpbb_style',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=4 ;


Code:
INSERT INTO `stylesheets` (`id`, `uri`, `name`, `phpbb_style`) VALUES
(1, 'ICGstation', 'ICGstation theme', 'default_phpbb_style'),
(2, 'default', '(default)', 'default_phpbb_style'),
(3, 'XD Redzone', 'XD Redzone', 'default_phpbb_style');
Reply With Quote
The Following User Says Thank You to wMan For This Useful Post:
TheArcadeMaster (17th October 2008)