```php Schema::table('user_settings', function (Blueprint $table) { $table->text('value')->nullable()->change(); }); Schema::table('user_settings_metadata', function (Blueprint $table) { $table->text('default')->nullable()->change(); }); ```