mediumText('setting_value')->nullable()->change(); }); Schema::table('issue_settings', function (Blueprint $table) { $table->mediumText('setting_value')->nullable()->change(); }); Schema::table('issue_galley_settings', function (Blueprint $table) { $table->mediumText('setting_value')->nullable()->change(); }); Schema::table('publication_galley_settings', function (Blueprint $table) { $table->mediumText('setting_value')->nullable()->change(); }); Schema::table('subscription_type_settings', function (Blueprint $table) { $table->mediumText('setting_value')->nullable()->change(); }); } /** * Reverse the migrations. */ public function down(): void { // This downgrade is intentionally not implemented. Changing MEDIUMTEXT back to TEXT // may result in data truncation. Having MEDIUMTEXT in place of TEXT in an otherwise // downgraded database will not have side-effects. } }