Я ранее создал таблицу пользователей. Теперь я создал новую миграцию, чтобы создать новый стол книг в моей схеме. Когда я пытаюсь запустить команду < /p>
php artisan migrate
< /code>
показывает: < /strong> < /p>
[Illuminate\Database\QueryException]
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' alre
ady exists (SQL: create table `users` (`id` int unsigned not null auto_incr
ement primary key, `username` varchar(255) not null, `email` varchar(255) n
ot null, `password` varchar(255) not null, `created_at` timestamp default 0
not null, `updated_at` timestamp default 0 not null) default character set
utf8 collate utf8_unicode_ci)
< /code>
Вот моя новая таблица миграции: < /strong> < /p>
Подробнее здесь: https://stackoverflow.com/questions/260 ... -the-older