id(); $table->string('name')->nullable(); $table->text('description')->nullable(); $table->string('years')->nullable(); $table->string('status')->default('Pending'); $table->unsignedBigInteger("updated_by")->nullable(); $table->unsignedBigInteger("created_by")->nullable(); $table->unsignedBigInteger("deleted_by")->nullable(); $table->softDeletes(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('surveys'); } };