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
d7802d01
Commit
d7802d01
authored
Dec 15, 2004
by
Leigh B. Stoller
Browse files
Add paniced bit (and date) to experiments table. Records that panic
button pressed, and when.
parent
fe21fc6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
d7802d01
...
...
@@ -366,6 +366,8 @@ CREATE TABLE experiments (
elab_in_elab
tinyint
(
1
)
NOT
NULL
default
'0'
,
elabinelab_eid
varchar
(
32
)
default
NULL
,
security_level
tinyint
(
1
)
NOT
NULL
default
'0'
,
paniced
tinyint
(
1
)
NOT
NULL
default
'0'
,
panic_date
datetime
default
NULL
,
PRIMARY
KEY
(
eid
,
pid
),
KEY
idx
(
idx
),
KEY
batchmode
(
batchmode
)
...
...
sql/database-migrate.txt
View file @
d7802d01
...
...
@@ -2202,3 +2202,9 @@ last_net_act,last_cpu_act,last_ext_act);
alter table users add column usr_w_pswd tinytext after usr_pswd;
1.292: Add "paniced" bit to experiments table.
alter table experiments add paniced tinyint(1) NOT NULL \
default '0' after security_level;
alter table experiments add panic_date datetime default NULL \
after paniced;
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