質問編集履歴
1
Roleモデルのソースを追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -98,4 +98,19 @@
|
|
98
98
|
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist
|
99
99
|
In PDOConnection.php line 67:
|
100
100
|
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist
|
101
|
+
```
|
102
|
+
|
103
|
+
追記:
|
104
|
+
Roleモデルでの処理はありません。
|
105
|
+
```PHP
|
106
|
+
<?php
|
107
|
+
namespace App\Models;
|
108
|
+
|
109
|
+
use Illuminate\Database\Eloquent\Model;
|
110
|
+
|
111
|
+
|
112
|
+
class Role extends Model
|
113
|
+
{
|
114
|
+
|
115
|
+
}
|
101
116
|
```
|