2009-06-05

Comments in PostgreSQL Databases

I'm trying to follow the philosophy of "Comments are good!" While working on my own personal database in postgres, I thought that I should add the notes I made while designing the database. With a quick google I found the COMMENT command. This allows you to add comments to the database, they are even dumped and restored with the schema. Learn something new every day.

No comments:

PreferenceKey Quirks

PreferenceKey has a few quirks that have tripped me up. One is the reduce(value:nextValue:) implementation. The other is that a PreferenceKe...