change_column_null(table_name, column_name, null, default = nil)
Instance Public methods
Sets or removes a +NOT NULL+ constraint on a column. The null
flag indicates whether the value can be NULL. For example
change_column_null(:users, :nickname, false)
says nicknames cannot be NULL (adds the constraint), whereas
change_column_null(:users, :nickname, true)
allows them to be NULL (drops the constraint).
The method accepts an optional fourth argument to replace existing +NULL+s
wit