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