setup wizard refactoring

This commit is contained in:
Čarodej
2022-04-27 11:42:28 +02:00
parent 39c94473c8
commit 08ee6567bc
21 changed files with 51 additions and 527 deletions

View File

@@ -15,7 +15,7 @@ class CreateExifsTable extends Migration
{
Schema::create('exifs', function (Blueprint $table) {
$table->uuid('id')->primary()->index();
$table->uuid('file_id')->index();
$table->uuid('file_id')->nullable()->index();
$table->timestamp('date_time_original')->nullable();
$table->string('artist')->nullable();