flask-pw icon indicating copy to clipboard operation
flask-pw copied to clipboard

Peewee 3.0 update breaking changes

Open Mysterionnz opened this issue 6 years ago • 1 comments

class BaseSignalModel(pw.BaseModel): change to class BaseSignalModel(pw.ModelBase):

if cls._meta.db_table and cls._meta.db_table != 'model': change to if cls._meta.table_name and cls._meta.table_name != 'model':

Mysterionnz avatar Dec 16 '18 16:12 Mysterionnz

Filed https://github.com/klen/flask-pw/pull/62

tymofij avatar Feb 20 '19 00:02 tymofij