3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
7 return new class extends Migration
16 Schema::table('channel_episode', function(Blueprint $table) {
17 $table->boolean('accept_comms')->default(false);
18 $table->boolean('accept_tracker')->default(false);
23 * Reverse the migrations.
27 public function down()
29 Schema::table('channel_episode', function(Blueprint $table) {
30 $table->dropColumn('accept_comms');
31 $table->dropColumn('accept_tracker');