Changes between Version 20 and Version 21 of ModelInheritance


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

--

Legend:

Unmodified
Added
Removed
Modified
  • ModelInheritance

    v20 v21  
    5151CREATE TABLE "myapp_restaurant" (
    5252    /* PRIMARY KEY REFERENCES "myapp_places" ("id") works for postgres, what about others? */
     53
    5354
    5455    "id" integer NOT NULL PRIMARY KEY REFERENCES "myapp_places" ("id"),
     
    190191                field.contribute_to_class(new_class, field.name)
    191192}}}
     193
     194That should pretty much be it for the object side of things; what's left is the database side of things (ie, the hard part).
Back to Top