id(); $table->text('title'); $table->string('slug')->unique(); $table->text('description')->nullable(); $table->unsignedTinyInteger('view')->default(0); $table->unsignedTinyInteger('status')->default(0); $table->unsignedBigInteger('user_id'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('galleries'); } };