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
1db2c02c
Commit
1db2c02c
authored
May 19, 2003
by
Leigh B. Stoller
Browse files
Add expt_swap_uid to experiments table so we can track last person
to swap in/out/modify an experiment, so we can do proper accounting.
parent
ef27ae3c
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
1db2c02c
...
...
@@ -253,6 +253,7 @@ CREATE TABLE experiments (
expt_terminating
datetime
default
NULL
,
expt_locked
datetime
default
NULL
,
expt_swapped
datetime
default
NULL
,
expt_swap_uid
varchar
(
8
)
NOT
NULL
default
''
,
swappable
tinyint
(
4
)
NOT
NULL
default
'0'
,
priority
tinyint
(
4
)
NOT
NULL
default
'0'
,
batchmode
tinyint
(
4
)
NOT
NULL
default
'0'
,
...
...
sql/database-migrate.txt
View file @
1db2c02c
...
...
@@ -561,3 +561,10 @@ last_net_act,last_cpu_act,last_ext_act);
alter table veth_interfaces change vnode vnode_id varchar(32)
default NULL;
1.147: Add expt_swap_uid to experiments table to store who was the
last to swap in/out/modify an experiment. Needed for proper
user accounting.
alter table experiments add expt_swap_uid varchar(8) NOT NULL
default '' after expt_swapped;
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