increments('id'); $table->integer('client_id')->nullable(); $table->integer('service_id')->nullable(); $table->string('slug', 255)->nullable(); $table->string('name', 255)->nullable(); $table->enum('status', ['Pending','Approved','Assigned','Completed'])->nullable(); $table->text('details')->nullable(); $table->longText('documents')->nullable(); $table->integer('assigning_id')->nullable(); $table->date('assigning_date')->nullable(); $table->string('payment_status', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('projects'); } }