This commit is contained in:
Andras Bacsai
2023-06-30 21:22:14 +02:00
parent 55d5b1e8da
commit b10ce8ea2d
6 changed files with 589 additions and 110 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('application_deployment_queues', function (Blueprint $table) {
$table->text('log')->default(null)->nullable();
$table->text('logs')->default(null)->nullable();
$table->string('current_process_id')->default(null)->nullable();
});
}
@@ -23,7 +23,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('application_deployment_queues', function (Blueprint $table) {
$table->dropColumn('log');
$table->dropColumn('logs');
$table->dropColumn('current_process_id');
});
}