This is a quick question. I was curious as to whether setting the default value for a column in Rails+PostgreSQL costs additional space (versus leaving the default as nil).
I am also curious if that naturally leads to concluding whether creating an empty record using rails (full of nils) takes the same space as a row full of data would.
I would suppose this highly depends on the DB implementation, but I am only interested in PostgreSQL databases (9.1+). But I got lost when I was searching for implementation details specific to that.