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