increments('id'); $table->integer('project_id')->nullable(); $table->text('name')->nullable(); $table->enum('link_payment', ['Yes','No'])->nullable(); $table->enum('signoff_recvd', ['Yes','No'])->nullable(); $table->date('signoff_date')->nullable(); $table->text('remarks')->nullable(); $table->text('followup')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('milestones'); } }