Can I do the following to make a charfield unique and not null using tortoise orm?
class User(Model):
id = fields.IntField(pk = True)
username = fields.CharField(max_length = 128, unique = True, nullable = False)
Or what would be the appropriate field? Is there a field for email type data? or which one should be used Thank you!