Every time you add a new attribute, modify the structure of your SQLAlchemy models, etc., you must perform a "migration" to replicate those changes in the database. Examples of migrations include adding new columns, tables, etc.
As a result, unlike D...