Skip to content

Commit 8951334

Browse files
committed
Remote user and session database tables.
1 parent 412aa4f commit 8951334

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

install/sql/ispconfig3.sql

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,46 @@ CREATE TABLE `mail_user` (
413413
--
414414

415415

416+
-- --------------------------------------------------------
417+
418+
--
419+
-- Tabellenstruktur für Tabelle `remote_session`
420+
--
421+
422+
CREATE TABLE `remote_session` (
423+
`remote_session` varchar(50) NOT NULL,
424+
`remote_userid` int(11) NOT NULL,
425+
`remote_functions` text NOT NULL,
426+
`tstamp` int(10) unsigned NOT NULL,
427+
PRIMARY KEY (`remote_session`)
428+
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
429+
430+
--
431+
-- Daten für Tabelle `remote_session`
432+
--
433+
434+
435+
-- --------------------------------------------------------
436+
437+
--
438+
-- Tabellenstruktur für Tabelle `remote_user`
439+
--
440+
441+
CREATE TABLE `remote_user` (
442+
`remote_userid` int(11) NOT NULL auto_increment,
443+
`remote_username` varchar(255) NOT NULL,
444+
`remote_password` varchar(255) NOT NULL,
445+
`remote_functions` text NOT NULL,
446+
PRIMARY KEY (`remote_userid`)
447+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
448+
449+
--
450+
-- Daten für Tabelle `remote_user`
451+
--
452+
453+
454+
455+
416456
-- --------------------------------------------------------
417457

418458
--

0 commit comments

Comments
 (0)