increments('id'); $table->integer('propertyid')->nullable(); $table->text('Name')->nullable(); $table->date('startdate')->nullable(); $table->date('enddate')->nullable(); $table->string('status', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('projects'); } }