boolean('twitch_live')->default(false); $table->string('twitch_category')->default(''); $table->integer('twitch_viewers')->default(0); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('channels', function (Blueprint $table) { $table->dropColumn('twitch_live'); $table->dropColumn('twitch_category'); $table->dropColumn('twitch_viewers'); }); } };