Skip to content

Commit 2d537af

Browse files
committed
Merge pull request #2 from scazz/master
Installation bugfixes
2 parents a2c668a + 8ad5ab3 commit 2d537af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/controllers/InstallerController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ private function addCol($table, $k, $col){
1515
}
1616
elseif ($k == 'str') {
1717
$colLen = explode(':', $col, 2);
18-
$table->string($colLen[0], $colLen[1]);
18+
$table->string($colLen[0], $colLen[1])->nullable();
1919
}
2020
elseif ($k == 'txt') {
2121
$table->text($col);

app/views/layout/blog-install.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Installer</title>
88
{{ HTML::style('/libraries/css/bootstrap.min.css') }}
99
{{ HTML::style('//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css') }}
10-
{{ HTML::script('/libraries/js/jquery-1.10.2.min.js') }}
10+
{{ HTML::script('/libraries/js/jquery-2.0.0.min.js') }}
1111
{{ HTML::script('/libraries/js/bootstrap.min.js') }}
1212
<?php
1313
// Change csrf_token in SESSION with each page load

0 commit comments

Comments
 (0)