coolify/database/migrations/2023_09_20_082737_create_service_applications_table.php

40 lines
1017 B
PHP
Raw Normal View History

2023-09-20 15:42:41 +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('service_applications', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->string('name');
2023-09-22 11:23:49 +02:00
$table->string('human_name')->nullable();
$table->longText('description')->nullable();
2023-09-20 15:42:41 +02:00
$table->string('fqdn')->unique()->nullable();
$table->longText('ports')->nullable();
$table->longText('exposes')->nullable();
2023-09-20 15:42:41 +02:00
$table->string('status')->default('exited');
$table->foreignId('service_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('service_applications');
}
};