Skip to content

Commit

Permalink
add fields after text
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 c1c9e11 commit efcfaf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/update_translations_table.php.stub
Expand Up @@ -10,7 +10,7 @@ return new class extends Migration
{
Schema::table('language_lines', function (Blueprint $table) {
collect(config('translation-loader.locales'))->each(function ($locale) use ($table) {
$table->text($locale);
$table->text($locale)->after('text');
});

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

0 comments on commit efcfaf5

Please sign in to comment.