increments('id'); $table->integer('asset_checklist_id')->nullable(); $table->integer('float_plan_id')->nullable(); $table->text('quantity')->nullable(); $table->tinyInteger('check')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('plans'); } }