Skip to content

Commit dc02f92

Browse files
committed
fix down method
1 parent 2152d53 commit dc02f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2025_04_30_135437_alter_users_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function up(): void
1616
public function down(): void
1717
{
1818
Schema::table('users', function (Blueprint $table) {
19-
$table->string('name')->nullable();
19+
$table->string('name')->change();
2020
});
2121
}
2222
};

0 commit comments

Comments
 (0)