回答編集履歴
1
タイポ
answer
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
```php
|
2
2
|
Schema::table('details', function (Blueprint $table) {
|
3
|
-
$table->string('image',
|
3
|
+
$table->string('image', 50)->nullable()->change();
|
4
4
|
});
|
5
5
|
```
|
6
6
|
|