Fix migration
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
philipp lang 2024-07-10 00:19:29 +02:00
parent 94597e57c1
commit d44ad4bc53
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ return new class extends Migration
public function up()
{
Schema::table('forms', function (Blueprint $table) {
$table->json('prevention_text')->after('description')->default(json_encode(['time' => 4, 'blocks' => [], 'version' => 1.0]));
$table->json('prevention_text')->after('description')->default(json_encode(['time' => 4, 'blocks' => [], 'version' => '1.0']));
});
}