Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
5bbb22af
Commit
5bbb22af
authored
Aug 08, 2006
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fix to previous revision.
parent
af61998a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
sql/database-create.sql
sql/database-create.sql
+1
-1
sql/database-migrate.txt
sql/database-migrate.txt
+4
-1
No files found.
sql/database-create.sql
View file @
5bbb22af
...
...
@@ -193,7 +193,7 @@ CREATE TABLE current_reloads (
--
CREATE
TABLE
datapository_databases
(
dbname
varchar
(
64
)
default
NULL
,
dbname
varchar
(
64
)
NOT
NULL
default
''
,
pid
varchar
(
12
)
NOT
NULL
default
''
,
gid
varchar
(
16
)
NOT
NULL
default
''
,
uid
varchar
(
8
)
NOT
NULL
default
''
,
...
...
sql/database-migrate.txt
View file @
5bbb22af
...
...
@@ -3592,10 +3592,13 @@ last_net_act,last_cpu_act,last_ext_act);
db access.
CREATE TABLE datapository_databases (
dbname varchar(64) default
NULL
,
dbname varchar(64)
NOT NULL
default
''
,
pid varchar(12) NOT NULL default '',
gid varchar(16) NOT NULL default '',
uid varchar(8) NOT NULL default '',
created datetime default NULL,
PRIMARY KEY (dbname)
) TYPE=MyISAM;
4.80: Fix to previous revision; Skip to next entry.
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