id(); $table->string('title'); $table->date('expire'); $table->string('image'); $table->unsignedInteger('max_click')->default(0); $table->unsignedInteger('click')->default(0); $table->boolean('status')->default(0); $table->string('link'); $table->unsignedBigInteger('user_id'); $table->softDeletes(); $table->timestamps(); $table->foreign('user_id') ->references('id')->on('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('advs'); } };