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
dfc25bce
Commit
dfc25bce
authored
May 12, 2008
by
Kevin Atkinson
Browse files
Add usr_affil_abbrev column to users and deleted users tables.
parent
ffaed9b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
dfc25bce
...
...
@@ -365,6 +365,7 @@ CREATE TABLE `deleted_users` (
`usr_name`
tinytext
,
`usr_title`
tinytext
,
`usr_affil`
tinytext
,
`usr_affil_abbrev`
varchar
(
16
)
default
NULL
,
`usr_email`
tinytext
,
`usr_URL`
tinytext
,
`usr_addr`
tinytext
,
...
...
@@ -3255,6 +3256,7 @@ CREATE TABLE `users` (
`usr_name`
tinytext
,
`usr_title`
tinytext
,
`usr_affil`
tinytext
,
`usr_affil_abbrev`
varchar
(
16
)
default
NULL
,
`usr_email`
tinytext
,
`usr_URL`
tinytext
,
`usr_addr`
tinytext
,
...
...
sql/database-migrate.txt
View file @
dfc25bce
...
...
@@ -4476,3 +4476,8 @@ last_net_act,last_cpu_act,last_ext_act);
`plab_name` tinytext NOT NULL,
PRIMARY KEY (`plc_idx`,`objtype`,`elab_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
4.149: Add usr_affil_abbrev column to users and deleted users tables
alter table users add usr_affil_abbrev varchar(16) after usr_affil;
alter table deleted_users add usr_affil_abbrev varchar(16) after usr_affil;
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