Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
dfc25bce
Commit
dfc25bce
authored
May 12, 2008
by
Kevin Atkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add usr_affil_abbrev column to users and deleted users tables.
parent
ffaed9b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
sql/database-create.sql
sql/database-create.sql
+2
-0
sql/database-migrate.txt
sql/database-migrate.txt
+5
-0
No files found.
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
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