increments('id'); $table->integer('client_id')->nullable(); $table->integer('quantity')->nullable(); $table->date('expiry_date')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('points'); } }