Update missing stuff

This commit is contained in:
DariusIII
2018-04-19 10:26:46 +02:00
parent a14096648f
commit 4a1bbf209c
2 changed files with 5 additions and 3 deletions
+4 -3
View File
@@ -171,13 +171,14 @@ class InstallNntmux extends Command
/**
* @return array|bool
* @throws \Exception
* @throws \RuntimeException
*/
protected function updatePaths()
{
$covers_path = base_path().'resources/covers/';
$nzb_path = base_path().'resources/nzb/';
$tmp_path = base_path().'resources/tmp/';
$covers_path = base_path().'/resources/covers/';
$nzb_path = base_path().'/resources/nzb/';
$tmp_path = base_path().'/resources/tmp/';
$unrar_path = $tmp_path.'unrar/';
$nzbPathCheck = is_writable($nzb_path);
@@ -55,6 +55,7 @@ class CreateUsersTable extends Migration {
$table->string('cp_api')->nullable();
$table->string('style')->nullable();
$table->dateTime('rolechangedate')->nullable()->comment('When does the role expire');
$table->rememberToken();
});
}