id(); $table->string('name'); $table->timestamps(); }); // https://laraveldaily.com/set-auto-increment-start-laravel-migrations/ DB::statement("ALTER TABLE `buttons` AUTO_INCREMENT=0;"); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('buttons'); } }