Changes between Version 17 and Version 18 of ModelInheritance
- Timestamp:
- Feb 27, 2006, 5:00:12 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ModelInheritance
v17 v18 51 51 CREATE TABLE "myapp_restaurant" ( 52 52 /* PRIMARY KEY REFERENCES "myapp_places" ("id") works for postgres, what about others? */ 53 53 54 "id" integer NOT NULL PRIMARY KEY REFERENCES "myapp_places" ("id"), 54 55 "description" text NOT NULL … … 148 149 }}} 149 150 150 == Ramblings on Magic Removal Subclassing ==151 == Ramblings on Magic Removal Subclassing from the Pycon Sprint== 151 152 152 153 Consider the following variation on the above restaurant example: