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