Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
b846399e
Commit
b846399e
authored
Dec 15, 2004
by
Russ Fish
Browse files
Add a settable Windows password. We derive a default password
from the Unix usr_pswd MD5 hash string.
parent
49d70d85
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
b846399e
...
...
@@ -1684,6 +1684,7 @@ CREATE TABLE users (
usr_phone
tinytext
,
usr_shell
tinytext
,
usr_pswd
tinytext
NOT
NULL
,
usr_w_pswd
tinytext
,
unix_uid
smallint
(
5
)
unsigned
NOT
NULL
auto_increment
,
status
enum
(
'newuser'
,
'unapproved'
,
'unverified'
,
'active'
,
'frozen'
,
'other'
)
NOT
NULL
default
'newuser'
,
admin
tinyint
(
4
)
default
'0'
,
...
...
sql/database-migrate.txt
View file @
b846399e
...
...
@@ -2196,3 +2196,9 @@ last_net_act,last_cpu_act,last_ext_act);
alter table os_info modify column \
OS enum('Unknown','Linux','FreeBSD','NetBSD','OSKit','Windows','Other') \
NOT NULL default 'Unknown';
1.291: Add a settable Windows password. We derive a default password
from the Unix usr_pswd MD5 hash string.
alter table users add column usr_w_pswd tinytext after usr_pswd;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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