View Single Post
  #10  
Old 12th October 2008, 18:19
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
just did above

Code:
INSERT INTO `stylesheets` (`id`, `uri`, `name`, `phpbb_style`) VALUES
(1, 'ICGstation', 'ICGstation theme', 'default_phpbb_style'),
(2, 'default', '(default)', 'default_phpbb_style'),
(3, 'large', 'Large text', 'default_phpbb_style'),
(4, 'Quake', 'Quake', 'default_phpbb_style');
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 ;
Reply With Quote
The Following User Says Thank You to wMan For This Useful Post:
Caronte2 (11th December 2021)