|
@ -104,7 +104,9 @@ INSERT INTO `uf_config` VALUES ('sig_len', '300'); |
|
|
INSERT INTO `uf_config` VALUES ('time_antiflood', '30'); |
|
|
INSERT INTO `uf_config` VALUES ('time_antiflood', '30'); |
|
|
INSERT INTO `uf_config` VALUES ('tables_width', '900'); |
|
|
INSERT INTO `uf_config` VALUES ('tables_width', '900'); |
|
|
INSERT INTO `uf_config` VALUES ('newpasswd_len', '6'); |
|
|
INSERT INTO `uf_config` VALUES ('newpasswd_len', '6'); |
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO `uf_config` VALUES ('posts', '1'); |
|
|
|
|
|
INSERT INTO `uf_config` VALUES ('pm_inbox_max', '10'); |
|
|
|
|
|
INSERT INTO `uf_config` VALUES ('pm_sentbox_max', '10'); |
|
|
|
|
|
|
|
|
#---------------------------------------------------- |
|
|
#---------------------------------------------------- |
|
|
|
|
|
|
|
@ -118,6 +120,8 @@ CREATE TABLE `uf_forums` ( |
|
|
`moderate` int(11) NOT NULL default '0', |
|
|
`moderate` int(11) NOT NULL default '0', |
|
|
`name` varchar(30) NOT NULL default '', |
|
|
`name` varchar(30) NOT NULL default '', |
|
|
`desc` text NOT NULL, |
|
|
`desc` text NOT NULL, |
|
|
|
|
|
`posts` mediumint(8) NOT NULL, |
|
|
|
|
|
`lastpost` varchar(255) NOT NULL, |
|
|
`c_id` int(8) NOT NULL default '0', |
|
|
`c_id` int(8) NOT NULL default '0', |
|
|
`sort` mediumint(8) NOT NULL default '0', |
|
|
`sort` mediumint(8) NOT NULL default '0', |
|
|
PRIMARY KEY (`f_id`) |
|
|
PRIMARY KEY (`f_id`) |
|
@ -126,7 +130,7 @@ CREATE TABLE `uf_forums` ( |
|
|
#- |
|
|
#- |
|
|
#- Table structure for `uf_forums` |
|
|
#- Table structure for `uf_forums` |
|
|
#- |
|
|
#- |
|
|
INSERT INTO `uf_forums` VALUES (1, 0, 0, 'Testowe Forum', 'Pierwsze testowe forum skryptu Dynamic Script Forum.', 1, 1); |
|
|
|
|
|
|
|
|
INSERT INTO `uf_forums` VALUES (1, 0, 0, 'Testowe Forum', 'Pierwsze testowe forum skryptu Dynamic Script Forum.', 1, '1:1:1:1181666444:2:Admin', 1, 1); |
|
|
|
|
|
|
|
|
#---------------------------------------------------- |
|
|
#---------------------------------------------------- |
|
|
|
|
|
|
|
@ -311,6 +315,8 @@ CREATE TABLE `uf_topics` ( |
|
|
`name` varchar(100) NOT NULL default '', |
|
|
`name` varchar(100) NOT NULL default '', |
|
|
`author` mediumint(8) NOT NULL default '0', |
|
|
`author` mediumint(8) NOT NULL default '0', |
|
|
`lastpost_time` int(1) NOT NULL, |
|
|
`lastpost_time` int(1) NOT NULL, |
|
|
|
|
|
`posts` mediumint(8) NOT NULL, |
|
|
|
|
|
`lastpost` varchar(255) NOT NULL, |
|
|
PRIMARY KEY (`t_id`) |
|
|
PRIMARY KEY (`t_id`) |
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
|
|
|
|
|
|
|
@ -318,7 +324,7 @@ CREATE TABLE `uf_topics` ( |
|
|
#- Table structure for `uf_topics` |
|
|
#- Table structure for `uf_topics` |
|
|
#- |
|
|
#- |
|
|
|
|
|
|
|
|
INSERT INTO `uf_topics` VALUES (1, 1, 0, 0, 'Witamy na forum uf', 1,0); |
|
|
|
|
|
|
|
|
INSERT INTO `uf_topics` VALUES (1, 1, 0, 0, 'Witamy na forum uf', 1, 0, 2, '1:1:0:2:Admin'); |
|
|
|
|
|
|
|
|
#---------------------------------------------------- |
|
|
#---------------------------------------------------- |
|
|
|
|
|
|
|
|