Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
6360c54b
Commit
6360c54b
authored
Jan 04, 2021
by
Thom
🛠
Browse files
Fix remote user logins (column width) (#5989)
parent
0df5c4b8
Pipeline
#7068
passed with stage
in 7 minutes and 51 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_dev_collection.sql
View file @
6360c54b
ALTER
TABLE
remote_user
MODIFY
remote_password
VARCHAR
(
200
)
NOT
NULL
DEFAULT
''
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
6360c54b
...
...
@@ -1325,7 +1325,7 @@ CREATE TABLE `remote_user` (
`sys_perm_group`
varchar
(
5
)
default
NULL
,
`sys_perm_other`
varchar
(
5
)
default
NULL
,
`remote_username`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`remote_password`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`remote_password`
varchar
(
200
)
NOT
NULL
DEFAULT
''
,
`remote_access`
enum
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
,
`remote_ips`
TEXT
,
`remote_functions`
text
,
...
...
Write
Preview
Markdown
is supported
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