0

It will be more helpful if you answer the following questions as well.

  1. Dealing with models.CharField.
    • In python2, how the CharField value is stored in the database and how it is different from the value which is going to store in python3.
4
  • It isn't. In Python-2.x it could store both a str and unicode, and these two types have merged in Python-3.x. Commented Jan 11, 2022 at 11:55
  • That means there will be no issues with database regarding the Charfield. Right? Commented Jan 11, 2022 at 11:59
  • no. It will store the data in a VARCHAR. If there is a problem with querying, this likely is due to the COLLATION of the database. Commented Jan 11, 2022 at 12:00
  • Thanks for the clarifying the doubt. Would you share your experience if you have already worked regarding these migration related things if possible? Commented Jan 11, 2022 at 12:04

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.