Skip to content

Commit

Permalink
add ticket given
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Sep 17, 2024
1 parent 0b42077 commit 6de2117
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
public function up(): void
{
Schema::table('bookings', function (Blueprint $table) {
$table->boolean('ticket_given')->after('comment')->default(false);
});
}
};

0 comments on commit 6de2117

Please sign in to comment.