Skip to content

Commit bc3ffe6

Browse files
author
John Wesely
committed
Merge branch 'main' of github.com:TappNetwork/Filament-Form-Builder
2 parents ae690ce + f7db300 commit bc3ffe6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
# Changelog
22

33
All notable changes to `:package_name` will be documented in this file.
4+
5+
## v1.2 - 2024-08-05
6+
7+
### Support locking a form to prevent data integrity issues
8+
9+
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
10+
11+
```
12+
Schema::table('filament_forms', function (Blueprint $table) {
13+
$table->boolean('locked')->default(false);
14+
});
15+
16+
```

0 commit comments

Comments
 (0)