imladrisol / onlineExam

Online examination system on Laravel 5
37 stars 38 forks source link

error missing table #2

Closed abdkhakim closed 7 years ago

abdkhakim commented 7 years ago

after install and i try php artisan migrate... and im get it. how i resolved it. sorry im newbie .. [Illuminate\Database\QueryException] SQLSTATE[42S02]: Base table or view not found: 1146 Table 'new.roles' doesn 't exist (SQL: select * from roles)

[PDOException] SQLSTATE[42S02]: Base table or view not found: 1146 Table 'new.roles' doesn 't exist

imladrisol commented 7 years ago

Hello. You should check if you have database 'new' and table 'roles' into it. Did you execute 'php artisan migrate'?

abdkhakim commented 7 years ago

Yes, im do it.. But it's same...

imladrisol commented 7 years ago

Do you have another tables in your database 'new' except 'roles'?

abdkhakim commented 7 years ago

i think no... im just trying this "copy project , install composer, and php artisan migrate". and this db is connected.

sorry im just newbie here...

imladrisol commented 7 years ago

You should create database with some name, for example 'new' by MySQL. Then, you have to edit .env file , set data for DB_.. section. Then, php artisan migrate.