2023-09-20 13:42:41 +00: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 09:56:32 +00:00
|
|
|
$table->foreignId('server_id')->nullable();
|
2023-09-22 12:47:25 +00:00
|
|
|
$table->longText('description')->nullable();
|
2023-09-20 13:42:41 +00: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 09:56:32 +00:00
|
|
|
$table->dropColumn('server_id');
|
2023-09-22 12:47:25 +00:00
|
|
|
$table->dropColumn('description');
|
2023-09-20 13:42:41 +00:00
|
|
|
$table->dropColumn('docker_compose_raw');
|
|
|
|
$table->dropColumn('docker_compose');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|