I want a primary key id
field to be Bigint
class Tweets(Model):
id = BigIntegerField(primary_key=True)
...
But it needs to be auto_incremented and I can't find a way in the Peewee docs. Please suggest if it's possible.
Update: I'm using MySql db.