Migration refactoring

This commit is contained in:
Peter Papp
2021-02-25 17:15:58 +01:00
parent 18518106ca
commit af1a8e6333
28 changed files with 101 additions and 581 deletions

View File

@@ -15,7 +15,7 @@ class CreateZipsTable extends Migration
{
Schema::create('zips', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->bigInteger('user_id');
$table->uuid('user_id');
$table->string('shared_token')->nullable();
$table->text('basename');
$table->timestamps();