I'm looking at this database model and I'm confused about the "PF" in some of the tables. My understanding is that the PF is a "Primary/Foreign key" which could also be a composite key. I understand this situation for a many-to-many relationship, but what about situations such as the Menu_Courses table? The primary key would obviously be an auto-incremented column of type int, but what about the menu_id field? How would that be implemented in a database such as SQL Server?
The author also explains PF fields on this page: http://www.databaseanswers.org/tutorial4_db_schema/tutorial_slide_5.htm
