bigIncrements('id'); $table->string('barcode')->unique(); $table->string('name')->nullable()->index(); $table->string('sku')->nullable()->index(); $table->string('owner_name')->nullable()->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('commodities'); } }