id(); $table->string("object_type", 30); $table->integer("object_id"); $table->string("uuid", 40)->unique(); $table->json("files"); $table->dateTime("expiration_time")->nullable(); $table->integer("created_by"); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('share_files'); } };