I am trying to learn how to use peewee with mysql.
I have an existing database on a mysql server with an existing table. The table is currently empty (I am just testing
You need to us peewee's create table method to create the actual database table before you can call select(), which will create an id column in the table.
select()