我想與Laravel一起工作,不想做這些炒作。 慢慢地,我沒有耐心離開。 我試了讓它工作了幾個星期,現在我終於做到了 - 但我似乎無法創建migratons ...無法創建遷移Laravel
創建自己是可能的。 但是,當我在
php artisan migrate
鍵入時發生的錯誤:
[Illuminate\Database\QueryException] SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: create table
用戶(
IDint unsigned not null auto_increment primary key,
名varchar(255) not null,
電子郵件varchar(255) not null,
密碼varchar(255) not null,
remember_tokenvarchar(100) null,
created_attimestamp null,
updated_at`添estamp空)默認 字符集utf8mb4 collate utf8mb4_unicode_ci)[PDOException] SQLSTATE [42S01]:基表或視圖已經存在: 1050表 '用戶' 已經exists`
,請問有什麼我能做什麼? 它試圖遷移錯誤的遷移... Laravel很酷,但每5分鐘就有一些奇怪的錯誤(雖然我只是按照教程...)
那麼,什麼是__unclear__在消息'表「用戶」已經exists'? –
我知道它存在,但它不是正確的遷移,無論我做什麼,它都會嘗試創建用戶表。 –
遷移做什麼寫在他們的'上'功能。顯然你的遷移嘗試創建表__twice__。 –