Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Charlie Thomas
40,856 PointsDatabase Migrations Peewee
I am building my own web app using Flask and Peewee and I want to update a model to have a new column. How can I go about doing that without overriding existing data.
I found this: http://peewee.readthedocs.org/en/latest/peewee/playhouse.html#migrate. So I am assuming I add the field in models.py then write a migration script to add the column. Am I going about this the right way?
1 Answer

Kenneth Love
Treehouse Guest TeacherThat's correct.
Charlie Thomas
40,856 PointsCharlie Thomas
40,856 PointsThank you.