projecteru / redis-ctl

A web application for Redis Cluster management
MIT License
128 stars 61 forks source link

about db structure upgrade #19

Closed jasonjoo2010 closed 8 years ago

jasonjoo2010 commented 8 years ago

We use create_all to create all tables we need currently.

but it will not alter them when we make some changes on them.

Is it necessary to make a db-version module replacing the create_all?

regards,

zheplusplus commented 8 years ago

I suppose a less painful practice is to use sqlalchemy-migration. But I'm not quite familiar with it yet :(

jasonjoo2010 commented 8 years ago

yeah, it's a solution. I try to figure it out