From 1f0c31efc4cf2c438ffd75960140ddb66b0fe042 Mon Sep 17 00:00:00 2001 From: redray <redray@ispconfig3> Date: Mon, 15 Dec 2008 14:30:38 -0500 Subject: [PATCH] added "a2enmod include" for ssi to the doc --- install/sql/ispconfig3.sql | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql index 00f87bd..cc5b893 100644 --- a/install/sql/ispconfig3.sql +++ b/install/sql/ispconfig3.sql @@ -598,7 +598,7 @@ `db_server` tinyint(4) NOT NULL default '0', `vserver_server` tinyint(4) NOT NULL default '0', `config` text NOT NULL, - `updated` tinyint(4) NOT NULL default '0', + `updated` bigint(20) unsigned NOT NULL default '0', `active` tinyint(4) NOT NULL default '1', PRIMARY KEY (`server_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ; @@ -998,17 +998,36 @@ -- -------------------------------------------------------- -- +-- Tabellenstruktur f�r Tabelle `sys_ini` +-- + +CREATE TABLE `sys_ini` ( + `sysini_id` int(11) NOT NULL auto_increment, + `config` longtext NOT NULL, + PRIMARY KEY (`sysini_id`) +) ENGINE=MyISAM AUTO_INCREMENT=1 ; + +-- +-- Daten f�r Tabelle `sys_ini` +-- + +INSERT INTO `sys_ini` (`sysini_id`, `config`) VALUES (1, ''); + +-- -------------------------------------------------------- + +-- -- Tabellenstruktur f�r Tabelle `sys_log` -- CREATE TABLE `sys_log` ( `syslog_id` int(10) unsigned NOT NULL auto_increment, `server_id` int(10) unsigned NOT NULL default '0', + `datalog_id` bigint(20) unsigned NOT NULL default '0', `loglevel` tinyint(4) NOT NULL default '0', `tstamp` int(10) unsigned NOT NULL, `message` text, PRIMARY KEY (`syslog_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=1 ; -- -- Daten f�r Tabelle `sys_log` -- Gitblit v1.9.1