Changes between Version 17 and Version 18 of ModelInheritance


Ignore:
Timestamp:
Feb 27, 2006, 5:00:12 PM (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ModelInheritance

    v17 v18  
    5151CREATE TABLE "myapp_restaurant" (
    5252    /* PRIMARY KEY REFERENCES "myapp_places" ("id") works for postgres, what about others? */
     53
    5354    "id" integer NOT NULL PRIMARY KEY REFERENCES "myapp_places" ("id"),
    5455    "description" text NOT NULL
     
    148149}}}
    149150
    150 == Ramblings on Magic Removal Subclassing ==
     151== Ramblings on Magic Removal Subclassing from the Pycon Sprint==
    151152
    152153Consider the following variation on the above restaurant example:
Back to Top