Skip to content

Commit

Permalink
Fixes tpos noticed by @kylescousin
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewelkins committed Aug 19, 2014
1 parent a01102c commit 1abdd46
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/Andrew13/Cabinet/CabinetUpload.php
Expand Up @@ -185,7 +185,6 @@ public function resolveFileName($folder, UploadedFile $file, $enableObfuscation=
} else {
$fileName = $file->fileSystemName;
}
}

// If file exists append string and try again.
if (File::isFile($folder.$fileName)) {
Expand Down
Expand Up @@ -19,6 +19,7 @@ public function up()
$table->string('path');
$table->string('extension');
$table->string('mimetype');
$table->bigInteger('size')->unsigned();
$table->integer('user_id')->unsigned()->index();
$table->softDeletes();
$table->timestamps();
Expand Down

0 comments on commit 1abdd46

Please sign in to comment.