2017-08-05 22:20:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class AllowNegativeValuesForOverallocation extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2017-08-05 22:20:07 +00:00
|
|
|
{
|
|
|
|
Schema::table('nodes', function (Blueprint $table) {
|
|
|
|
$table->integer('disk_overallocate')->default(0)->nullable(false)->change();
|
|
|
|
$table->integer('memory_overallocate')->default(0)->nullable(false)->change();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2017-08-05 22:20:07 +00:00
|
|
|
{
|
|
|
|
Schema::table('nodes', function (Blueprint $table) {
|
2022-11-25 20:29:04 +00:00
|
|
|
DB::statement('ALTER TABLE nodes MODIFY disk_overallocate MEDIUMINT UNSIGNED NULL,
|
2017-08-23 19:34:34 +00:00
|
|
|
MODIFY memory_overallocate MEDIUMINT UNSIGNED NULL');
|
2017-08-05 22:20:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|