Changes between Initial Version and Version 1 of Ticket #26781
- Timestamp:
- Jun 20, 2016, 6:37:34 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26781 – Description
initial v1 1 Problem appears after renaming db_table, if you try to rename, for example "Article" to "article" or "Blog" to "blog" or to "bLoG", etc. 1 Problem appears after renaming db_table, if you try to rename, for example "Article" to "article" or "Blog" to "blog" or to "bLoG", etc. and migrate this changes to database 2 2 3 3 Example: … … 5 5 Step 1. Create model: 6 6 7 {{{ 7 8 class Article (models.Model): 8 9 class Meta(): … … 11 12 body = models.TextField() 12 13 date_cr = models.DateTimeField() 14 }}} 15 13 16 14 17 Step 2. make migrations & migrate