Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Elijah Grubb
emulab-devel
Commits
ea596acf
Commit
ea596acf
authored
Jul 27, 2017
by
Mike Hibler
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into root-keypair-r1
parents
de9122cf
3c99ed12
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
sql/database-create.sql
sql/database-create.sql
+2
-0
sql/updates/4/590
sql/updates/4/590
+21
-0
www/aptui/template/signup.html
www/aptui/template/signup.html
+1
-1
No files found.
sql/database-create.sql
View file @
ea596acf
...
...
@@ -525,8 +525,10 @@ CREATE TABLE `apt_profiles` (
DROP
TABLE
IF
EXISTS
`apt_announcements`
;
CREATE
TABLE
`apt_announcements`
(
`idx`
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
`uuid`
varchar
(
40
)
NOT
NULL
,
`created`
datetime
default
NULL
,
`uid_idx`
int
(
10
)
default
NULL
,
`pid_idx`
int
(
10
)
default
NULL
,
`genesis`
varchar
(
64
)
NOT
NULL
default
'emulab'
,
`portal`
varchar
(
64
)
NOT
NULL
default
'emulab'
,
`retired`
tinyint
(
1
)
NOT
NULL
default
'0'
,
...
...
sql/updates/4/590
0 → 100644
View file @
ea596acf
use strict;
use libdb;
sub DoUpdate($$$)
{
my ($dbhandle, $dbname, $version) = @_;
if (!DBSlotExists("apt_announcements", "uuid")) {
DBQueryFatal("alter table apt_announcements add ".
" `uuid` varchar(40) NOT NULL after idx");
}
if (!DBSlotExists("apt_announcements", "pid_idx")) {
DBQueryFatal("alter table apt_announcements add ".
" `pid_idx` int(10) default NULL after uid_idx");
}
return 0;
}
# Local Variables:
# mode:perl
# End:
www/aptui/template/signup.html
View file @
ea596acf
...
...
@@ -9,7 +9,7 @@
<span
class=
"pull-right"
>
Please see our
<a
href=
"http://www.cloudlab.us/aup.php"
target=
"_blank"
>
Accept
i
ble Use Policy
</a>
Accept
a
ble Use Policy
</a>
</span>
<
%
}
%
>
<h3
class=
'panel-title'
id=
'signup_panel_title'
>
...
...
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