質問編集履歴

2

誤字の修正

2020/07/02 10:32

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -60,7 +60,7 @@
60
60
 
61
61
  ->nullable(false)->index();
62
62
 
63
- $table->string('comment', 255)->nullable(true);
63
+ $table->string('comment', 10)->nullable(true);
64
64
 
65
65
  $table->timestamp('created_at')->nullable(true);
66
66
 

1

誤字の修正

2020/07/02 10:32

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -52,7 +52,7 @@
52
52
 
53
53
  {
54
54
 
55
- Schema::create('order_log', function (Blueprint $table) {
55
+ Schema::create('staff_log', function (Blueprint $table) {
56
56
 
57
57
  $table->bigIncrements('id')->autoIncrement()->primary();
58
58
 
@@ -84,7 +84,7 @@
84
84
 
85
85
  {
86
86
 
87
- Schema::drop('order_log');
87
+ Schema::drop('staff_log');
88
88
 
89
89
  }
90
90