Skip to content
GitLab
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-stable
Commits
8a5d1f1e
Commit
8a5d1f1e
authored
Dec 14, 2004
by
Russ Fish
Browse files
Add Windows to the OS list in the os_info table.
parent
57ddedbe
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
8a5d1f1e
...
...
@@ -1156,7 +1156,7 @@ CREATE TABLE os_info (
creator
varchar
(
8
)
default
NULL
,
created
datetime
default
NULL
,
description
tinytext
NOT
NULL
,
OS
enum
(
'Unknown'
,
'Linux'
,
'FreeBSD'
,
'NetBSD'
,
'OSKit'
,
'Other'
)
NOT
NULL
default
'Unknown'
,
OS
enum
(
'Unknown'
,
'Linux'
,
'FreeBSD'
,
'NetBSD'
,
'OSKit'
,
'
Windows'
,
'
Other'
)
NOT
NULL
default
'Unknown'
,
version
varchar
(
12
)
default
''
,
path
tinytext
,
magic
tinytext
,
...
...
sql/database-migrate.txt
View file @
8a5d1f1e
...
...
@@ -2190,3 +2190,9 @@ last_net_act,last_cpu_act,last_ext_act);
alter table floorimages add pixels_per_meter float(10,3) \
NOT NULL default '0.000' after scale;
1.290: Add Windows to the OS list in the os_info table.
alter table os_info modify column \
OS enum('Unknown','Linux','FreeBSD','NetBSD','OSKit','Windows','Other') \
NOT NULL default 'Unknown';
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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