id(); $table->text('name'); $table->date('start_date'); $table->date('end_date'); $table->string('banner')->nullable(); $table->string('offer_file_template')->nullable(); $table->text('description'); $table->unsignedBigInteger('enhancer_id'); $table->foreign('enhancer_id')->references('id')->on('users'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cooperations'); } };