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