Skip to content

Commit

Permalink
fix order of fields
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 efcfaf5 commit cb881fa
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 @@ -9,7 +9,7 @@ return new class extends Migration
public function up()
{
Schema::table('language_lines', function (Blueprint $table) {
collect(config('translation-loader.locales'))->each(function ($locale) use ($table) {
collect(config('translation-loader.locales'))->reverse()->each(function ($locale) use ($table) {
$table->text($locale)->after('text');
});

Expand Down

0 comments on commit cb881fa

Please sign in to comment.