coolify/database/migrations/2023_10_24_103548_create_standalone_mysqls_table.php

58 lines
1.8 KiB
PHP
Raw Normal View History

2023-10-24 14:31:28 +02:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('standalone_mysqls', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->string('name');
$table->string('description')->nullable();
$table->text('mysql_root_password');
$table->string('mysql_user')->default('mysql');
$table->text('mysql_password');
$table->string('mysql_database')->default('default');
$table->longText('mysql_conf')->nullable();
$table->string('status')->default('exited');
$table->string('image')->default('mysql:8');
$table->boolean('is_public')->default(false);
$table->integer('public_port')->nullable();
$table->text('ports_mappings')->nullable();
2024-06-10 22:43:34 +02:00
$table->string('limits_memory')->default('0');
$table->string('limits_memory_swap')->default('0');
2023-10-24 14:31:28 +02:00
$table->integer('limits_memory_swappiness')->default(60);
2024-06-10 22:43:34 +02:00
$table->string('limits_memory_reservation')->default('0');
2023-10-24 14:31:28 +02:00
2024-06-10 22:43:34 +02:00
$table->string('limits_cpus')->default('0');
$table->string('limits_cpuset')->nullable()->default('0');
2023-10-24 14:31:28 +02:00
$table->integer('limits_cpu_shares')->default(1024);
$table->timestamp('started_at')->nullable();
$table->morphs('destination');
$table->foreignId('environment_id')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('standalone_mysqls');
}
};