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
emulab
emulab-devel
Commits
e4c50605
Commit
e4c50605
authored
Mar 11, 2005
by
Leigh B. Stoller
Browse files
Add wikiname to user and groups table so we can remember it and
display it (and a link).
parent
c3c22456
Changes
2
Show whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
e4c50605
...
...
@@ -566,6 +566,7 @@ CREATE TABLE groups (
unix_name
varchar
(
16
)
NOT
NULL
default
''
,
expt_count
mediumint
(
8
)
unsigned
default
'0'
,
expt_last
date
default
NULL
,
wikiname
tinytext
,
PRIMARY
KEY
(
pid
,
gid
),
KEY
unix_gid
(
unix_gid
),
KEY
gid
(
gid
),
...
...
@@ -1837,6 +1838,7 @@ CREATE TABLE users (
user_interface
enum
(
'emulab'
,
'plab'
)
NOT
NULL
default
'emulab'
,
chpasswd_key
varchar
(
32
)
default
NULL
,
chpasswd_expires
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
wikiname
tinytext
,
PRIMARY
KEY
(
uid
),
KEY
unix_uid
(
unix_uid
),
KEY
status
(
status
)
...
...
sql/database-migrate.txt
View file @
e4c50605
...
...
@@ -2511,3 +2511,10 @@ last_net_act,last_cpu_act,last_ext_act);
value text,
PRIMARY KEY (pid,eid,idx)
) TYPE=MyISAM;
1.320: Add wikiname to user and groups table so we can remember it and
display it (and a link).
alter table users add wikiname tinytext;
alter table groups add wikiname tinytext;
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