I previously created users table. Now I have created a new migration to create a new books table inside my schema. When I try to run the command
php artisan migrate it shows me:
[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,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)
My question is just the same as 2 and codes i ran are same as well. So, i have tried all the solutions suggested here.But they don't work for me.As i can't make comments on the post i have to post it as a new question.Hope you will realise my concern and help me out.