Changes between Initial Version and Version 1 of Ticket #452
- Timestamp:
- Sep 2, 2005, 1:19:34 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #452 – Description
initial v1 1 1 I create two m2mfields which reference to the same class, such as this: 2 2 3 {{{ 3 4 class Name(Model): 4 5 name = CharField (maxlength=50) … … 12 13 def __repr__(self): 13 14 return self.first_name 15 }}} 14 16 15 17 I get two tables in DB: 16 app_peoples_first_name and app_peoples_last_name :18 app_peoples_first_name and app_peoples_last_name 17 19 18 20 And i also get three apis: 19 set_first_name, set_last_name and get_name_list .21 set_first_name, set_last_name and get_name_list 20 22 21 23 while i think there should be two gets here: get_first_name_list and