Files
panel-pelican-dev/database/migrations/2016_10_23_181719_update_misnamed_bungee.php

22 lines
437 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
2024-03-19 21:03:50 -04:00
return new class extends Migration
{
/**
* Run the migrations.
*/
2024-03-19 21:12:27 -04:00
public function up(): void
{
DB::table('service_variables')->select('env_variable')->where('env_variable', 'BUNGE_VERSION')->update([
2016-12-07 22:46:38 +00:00
'env_variable' => 'BUNGEE_VERSION',
]);
}
/**
* Reverse the migrations.
*/
public function down(): void {}
2024-03-19 21:03:50 -04:00
};