Fixed SQLite compatibility
Removed 'DB::statement("ALTER TABLE `buttons` AUTO_INCREMENT=0;");' due to incompatibility with SQLite.
This commit is contained in:
parent
4753ceaa63
commit
4af729687e
|
@ -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;");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue