pelican-panel-banquise/database/migrations/2016_10_23_181719_update_misnamed_bungee.php
2024-03-19 21:12:27 -04:00

24 lines
446 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
DB::table('service_variables')->select('env_variable')->where('env_variable', 'BUNGE_VERSION')->update([
'env_variable' => 'BUNGEE_VERSION',
]);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
}
};