From a75d10d7548e69fb6fd3b9dcf14d357febcc72f4 Mon Sep 17 00:00:00 2001 From: pedro_morgan <pedro_morgan@ispconfig3> Date: Tue, 21 Aug 2007 19:32:35 -0400 Subject: [PATCH] Removed globals and created private vars --- install/sql/ispconfig3.sql | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql index d379671..d96333f 100644 --- a/install/sql/ispconfig3.sql +++ b/install/sql/ispconfig3.sql @@ -416,6 +416,46 @@ -- -------------------------------------------------------- -- +-- Tabellenstruktur f�r Tabelle `remote_session` +-- + +CREATE TABLE `remote_session` ( + `remote_session` varchar(50) NOT NULL, + `remote_userid` int(11) NOT NULL, + `remote_functions` text NOT NULL, + `tstamp` int(10) unsigned NOT NULL, + PRIMARY KEY (`remote_session`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Daten f�r Tabelle `remote_session` +-- + + +-- -------------------------------------------------------- + +-- +-- Tabellenstruktur f�r Tabelle `remote_user` +-- + +CREATE TABLE `remote_user` ( + `remote_userid` int(11) NOT NULL auto_increment, + `remote_username` varchar(255) NOT NULL, + `remote_password` varchar(255) NOT NULL, + `remote_functions` text NOT NULL, + PRIMARY KEY (`remote_userid`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +-- +-- Daten f�r Tabelle `remote_user` +-- + + + + +-- -------------------------------------------------------- + +-- -- Tabellenstruktur f�r Tabelle `server` -- -- Gitblit v1.9.1