Changes between Initial Version and Version 1 of Ticket #29260
- Timestamp:
- Mar 25, 2018, 6:17:39 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29260 – Description
initial v1 1 Using model's instance:1 Using a model's instance: 2 2 3 3 {{{ … … 20 20 }}} 21 21 22 Using model's manager method:22 Using a model's manager method: 23 23 24 24 {{{ … … 28 28 }}} 29 29 30 Using a model's instance with `force_insert` argument: 31 32 {{{ 33 >> account = Account() 34 >> account.title = "abc" 35 >> account.save(force_insert=true) 36 37 1. INSERT INTO "app_account" ("title", "id") VALUES (\'abc\', \'3d8c1b3c-214a-4798-a0fa-d4c22c2b877f\'::uuid) 38 }}} 39 30 40 31 41 Related issue? https://code.djangoproject.com/ticket/29129