A
The argument ‘--’ terminates all options; any following arguments are treated as non-option arguments, even if they begin with a hyphen.
Size: a a a
A
P
RK
start laravel-echo-server --name="laravel-example-echo" -- start
RK
P
RK
RK
start node --name="nuxt-example-security" -- index.js
RK
RK
start node index.js
RK
RK
RK
RK
RK
RK
P
N
$table->index('id')
И в следующей миграции удаляется $table->dropIndex('id')
но при выполнении миграции вываливается ошибка SQLSTATE[42000]: Syntax error or access violation: 1091 Can't DROP 'playlists_id_index'; check that column/key exists (SQL: alter table `playlists` drop index `playlists_id_index`)
(название таблицы playlists). Вопрос, что я делаю не так ?P
$table->index('id')
И в следующей миграции удаляется $table->dropIndex('id')
но при выполнении миграции вываливается ошибка SQLSTATE[42000]: Syntax error or access violation: 1091 Can't DROP 'playlists_id_index'; check that column/key exists (SQL: alter table `playlists` drop index `playlists_id_index`)
(название таблицы playlists). Вопрос, что я делаю не так ? $table->dropIndex(['id'])
P