coolify/database/migrations/2023_09_23_111812_update_service_databases_table.php

31 lines
737 B
PHP
Raw Normal View History

2023-09-25 15:48:43 +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('service_databases', function (Blueprint $table) {
2023-09-26 14:45:52 +02:00
$table->boolean('exclude_from_status')->default(false);
$table->string('image')->nullable();
2023-09-25 15:48:43 +02:00
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('service_databases', function (Blueprint $table) {
2023-09-26 14:45:52 +02:00
$table->dropColumn('exclude_from_status');
$table->dropColumn('image');
2023-09-25 15:48:43 +02:00
});
}
};