Skip to content

Commit c98eb44

Browse files
authoredMar 21, 2025
Fix rolling back modify_form_submissions migration (#413)
1 parent a9e12ea commit c98eb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎database/migrations/2024_05_15_100000_modify_form_submissions_id.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function down()
1717
{
1818
Schema::table($this->prefix('form_submissions'), function (Blueprint $table) {
1919
$table->dropUnique('form_submissions_id_unique');
20-
$table->string('id')->unique()->change();
20+
$table->id()->change();
2121
});
2222
}
2323
};

0 commit comments

Comments
 (0)