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