2016-10-23 18:34:59 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
2024-03-19 21:03:50 -04:00
|
|
|
return new class extends Migration
|
2016-10-23 18:34:59 -04:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Run the migrations.
|
|
|
|
|
*/
|
2024-03-19 21:12:27 -04:00
|
|
|
public function up(): void
|
2016-10-23 18:34:59 -04:00
|
|
|
{
|
|
|
|
|
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',
|
2016-10-23 18:34:59 -04:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Reverse the migrations.
|
|
|
|
|
*/
|
2024-11-22 09:27:57 +01:00
|
|
|
public function down(): void {}
|
2024-03-19 21:03:50 -04:00
|
|
|
};
|