I can't imagine designing a database without foreign keys. Without them, eventually you are bound to make a mistake and corrupt the integrity of your data. They are not *required*, strictly speaking, but the benefits are huge. I'm fairly certain that FogBugz does not have foreign key constraints in the database. I would be interested to hear how the Fog Creek team structures their code to guarantee than they will never introduce an inconsistency. > Eric: FogBugz uses a naming convention for foreign keys. For example **ixBug** is understood to be an index into the primary key of the table **Bug**. So far we've never had a problem. -- *Joel Spolsky*