Skip to content
Snippets Groups Projects
Commit e4c50605 authored by Leigh B. Stoller's avatar 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
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment