teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

Roleモデルのソースを追記

2020/09/21 08:24

投稿

gurisupi
gurisupi

スコア0

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
  ```