increments('id'); $table->string('name', 200)->nullable(); $table->integer('lots')->nullable(); $table->decimal('price', 20,2)->nullable(); $table->text('image')->nullable(); $table->tinyInteger('isRecommended')->nullable(); $table->tinyInteger('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('plans'); } }