coolify/database/migrations/2023_03_27_081718_create_application_previews_table.php

37 lines
944 B
PHP
Raw Normal View History

2023-05-30 15:52:17 +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('application_previews', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->integer('pull_request_id');
2023-05-31 10:19:29 +02:00
$table->string('pull_request_html_url');
2023-06-13 15:01:11 +02:00
$table->integer('pull_request_issue_comment_id')->nullable();
2023-05-30 15:52:17 +02:00
$table->string('fqdn')->unique()->nullable();
$table->string('status')->default('exited');
$table->foreignId('application_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('application_previews');
}
};