increments('id'); $table->text('name')->nullable(); $table->text('price')->nullable(); $table->text('points')->nullable(); $table->text('tokens')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('commercialpackages'); } }