Skip to content

Commit

Permalink
make text nullable
Browse files Browse the repository at this point in the history
Signed-off-by: Dieter Coopman <dieter@deltasolutions.be>
  • Loading branch information
dietercoopman committed Apr 7, 2023
1 parent 70898e5 commit 7fd6382
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions database/migrations/update_translations_table.php.stub
Expand Up @@ -12,6 +12,8 @@ return new class extends Migration
collect(config('translation-loader.locales'))->each(function ($locale) use ($table) {
$table->text($locale);
});

$table->json('text')->nullable()->change();
});
}
};

0 comments on commit 7fd6382

Please sign in to comment.