1.1 supports nullable user ids so that guest data can be collected by forms. If you are upgrading from 1.0 to 1.1, create a migration with the following methods to reflect this change.
Schema::table('filament_form_user', function (Blueprint $table) {
$table->foreignId('user_id')->nullable()->change();
});
Schema::table('filament_forms', function (Blueprint $table) {
$table->boolean('permit_guest_entries')->default(false);
});
1.1 supports user configurable redirect URLs. When a redirect URL is present on the form model, the user will be redirected there instead of the redirect URL specified in the config. If you are upgrading from 1.0 to 1.1, create a migration with the following method to reflect this change.
Schema::table('filament_forms', function (Blueprint $table) {
$table->text('redirect_url')->nullable();
});
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
Schema::table('filament_forms', function (Blueprint $table) {
$table->boolean('locked')->default(false);
});