coolify/database/migrations/2023_09_20_082541_update_services_table.php

36 lines
928 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::table('services', function (Blueprint $table) {
2023-09-24 11:56:32 +02:00
$table->foreignId('server_id')->nullable();
$table->longText('description')->nullable();
2023-09-20 15:42:41 +02:00
$table->longText('docker_compose_raw');
$table->longText('docker_compose')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('services', function (Blueprint $table) {
2023-09-24 11:56:32 +02:00
$table->dropColumn('server_id');
$table->dropColumn('description');
2023-09-20 15:42:41 +02:00
$table->dropColumn('docker_compose_raw');
$table->dropColumn('docker_compose');
});
}
};