Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
8951334b
Commit
8951334b
authored
Aug 21, 2007
by
tbrehm
Browse files
Remote user and session database tables.
parent
412aa4f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/ispconfig3.sql
View file @
8951334b
...
...
@@ -413,6 +413,46 @@ CREATE TABLE `mail_user` (
--
-- --------------------------------------------------------
--
-- Tabellenstruktur fr 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 fr Tabelle `remote_session`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur fr 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 fr Tabelle `remote_user`
--
-- --------------------------------------------------------
--
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment