Is it possible to change the nullable attribute of a column without specifying its data type? For example in the following statement I do not want to change the data-type yet I have to specify it.
DB::statement('ALTER TABLE `throttle` MODIFY `user_id` INTEGER UNSIGNED NULL;');
I mean in any RDBMS in particular MySQL.