回答編集履歴

3

MAMPについても追記しました。

2021/02/09 00:41

投稿

Lulucom
Lulucom

スコア1899

test CHANGED
@@ -19,3 +19,29 @@
19
19
 
20
20
 
21
21
  参考: [利用可能なカラムタイプ](https://readouble.com/laravel/8.x/ja/migrations.html#available-column-types)
22
+
23
+
24
+
25
+ MySQLについては、他の方のご指摘通り、複数インストールされているのではないでしょうか。
26
+
27
+ 例えば、Homebrewなどでもインストールした可能性があると思います。
28
+
29
+
30
+
31
+ mysqlコマンドを絶対パスで指定すると、MAMPのmysqlコマンドを起動できないでしょうか。
32
+
33
+
34
+
35
+ 例:
36
+
37
+
38
+
39
+ ```
40
+
41
+ $ /Applications/MAMP/Library/bin/mysql -u root //mysqlへ接続
42
+
43
+ ```
44
+
45
+
46
+
47
+ (パスはMAMPのインストール先によって異なります)

2

理由と参考リンクを追記しました。

2021/02/09 00:41

投稿

Lulucom
Lulucom

スコア1899

test CHANGED
@@ -11,3 +11,11 @@
11
11
  $table->unsignedBigInteger('user_id');
12
12
 
13
13
  ```
14
+
15
+
16
+
17
+ usersテーブルのidカラムにはbigIncrementsメソッドが使用されており、UNSIGNED BIGINTになっていると思われるためです。
18
+
19
+
20
+
21
+ 参考: [利用可能なカラムタイプ](https://readouble.com/laravel/8.x/ja/migrations.html#available-column-types)

1

ファイル名ではなくクラス名にしました。

2021/02/08 15:48

投稿

Lulucom
Lulucom

スコア1899

test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 2021_02_07_060223_create_recipes_table.php
5
+ CreateRecipesTable クラス
6
6
 
7
7
 
8
8