Fixed SQLite compatibility

Removed 'DB::statement("ALTER TABLE `buttons` AUTO_INCREMENT=0;");' due to incompatibility with SQLite.
This commit is contained in:
JulianPrieber 2022-02-21 19:58:55 +01:00 committed by GitHub
parent 4753ceaa63
commit 4af729687e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -18,9 +18,6 @@ class CreateButtonsTable extends Migration
$table->string('name');
$table->timestamps();
});
// https://laraveldaily.com/set-auto-increment-start-laravel-migrations/
DB::statement("ALTER TABLE `buttons` AUTO_INCREMENT=0;");
}
/**