[Django]-Why default value for column doesn't work with django

4👍

Django doesn’t add default values into the schema, instead it adds the default value if need-be when a User object is created.

👤Astar

Leave a comment