You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: UPGRADE.md
+8
Original file line number
Diff line number
Diff line change
@@ -18,3 +18,11 @@
18
18
$table->text('redirect_url')->nullable();
19
19
});
20
20
```
21
+
22
+
## Support locking a form to prevent data integrity issues
23
+
1.2 supports locking forms so that entries from a form can always be compared apples to apples over time with no risk of the form being changed and previous entries becoming incompatible with new entires. If you are upgrading from 1.0 or 1.1 to 1.2, create a migration with the following method to reflect this change
24
+
```
25
+
Schema::table('filament_forms', function (Blueprint $table) {
0 commit comments