increments('id'); $table->string('name'); $table->integer('product_id'); $table->integer('usedBy')->nullable(); $table->dateTime('usedSince')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('items'); } }