id(); $table->timestamps(); $table->boolean('isCover'); $table->boolean('isProcessing'); $table->bigInteger(column: 'lightboxWidth', unsigned: true)->default(0); $table->bigInteger(column: 'lightboxHeight', unsigned: true)->default(0); $table->foreignIdFor(Album::class); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('images'); } };