string('twitch_chat')->default(''); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('channels', function(Blueprint $table) { $table->dropColumn('twitch_chat'); }); } };