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
0f2ae549
Commit
0f2ae549
authored
Sep 01, 2005
by
Leigh B. Stoller
Browse files
Add a cvsrepo_public flag to the projects table.
parent
575da631
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
0f2ae549
...
@@ -1528,6 +1528,7 @@ CREATE TABLE projects (
...
@@ -1528,6 +1528,7 @@ CREATE TABLE projects (
pcremote_ok
set
(
'pcplabphys'
,
'pcron'
,
'pcwa'
)
default
NULL
,
pcremote_ok
set
(
'pcplabphys'
,
'pcron'
,
'pcwa'
)
default
NULL
,
default_user_interface
enum
(
'emulab'
,
'plab'
)
NOT
NULL
default
'emulab'
,
default_user_interface
enum
(
'emulab'
,
'plab'
)
NOT
NULL
default
'emulab'
,
linked_to_us
tinyint
(
4
)
NOT
NULL
default
'0'
,
linked_to_us
tinyint
(
4
)
NOT
NULL
default
'0'
,
cvsrepo_public
tinyint
(
1
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
pid
),
PRIMARY
KEY
(
pid
),
KEY
unix_gid
(
unix_gid
),
KEY
unix_gid
(
unix_gid
),
KEY
approved
(
approved
),
KEY
approved
(
approved
),
...
...
sql/database-migrate.txt
View file @
0f2ae549
...
@@ -2787,5 +2787,9 @@ last_net_act,last_cpu_act,last_ext_act);
...
@@ -2787,5 +2787,9 @@ last_net_act,last_cpu_act,last_ext_act);
4.6: Fix up previous revision; skip to next entry.
4.6: Fix up previous revision; skip to next entry.
4.7: Ditto.
4.7: Ditto.
4.8:
4.8:
Add a cvsrepo public flag to the project table.
alter table projects add cvsrepo_public tinyint(1) \
NOT NULL default '0' after linked_to_us;
4.9:
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