string('type')->default('text')->nullable()->index()->after('from_id'); $table->boolean('is_hidden')->default(false)->index()->after('group_message'); $table->json('meta')->nullable()->after('is_hidden'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('direct_messages', function (Blueprint $table) { $table->dropColumn('type'); $table->dropColumn('is_hidden'); $table->dropColumn('meta'); }); } }