Changes between Version 50 and Version 51 of ModelInheritance
- Timestamp:
- Jul 3, 2007, 5:15:08 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ModelInheritance
v50 v51 53 53 54 54 CREATE TABLE "myapp_restaurant" ( 55 /* PRIMARY KEY REFERENCES "myapp_place s" ("id") works for postgres, what about others? */55 /* PRIMARY KEY REFERENCES "myapp_place" ("id") works for postgres, what about others? */ 56 56 /* This works in MySQL too. -- Andy Dustman */ 57 "id" integer NOT NULL PRIMARY KEY REFERENCES "myapp_place s" ("id"),57 "id" integer NOT NULL PRIMARY KEY REFERENCES "myapp_place" ("id"), 58 58 "description" text NOT NULL 59 59 );