Ok so now I have this problem i need to add a “balance” column for my users table. I am using the Zend framework and I was hoping to use this one here:
Unfortunately i suppose it never got into the implementation stage and there’s just the header file, the imeplementation file is nowhere to be downloaded.
Would you guys have any suggestion? I don’t want to go to 5 mysql database and add manually the column i need – at the same time i don’t want to be doing it this way everytime i need to make any db changes. I need something like the zend schema manager component.
I’m currently using Akrabat_Db_Schema_Manager as a database migration tool. It’s written in
Zend Frameworkand is pretty straightforward, all database changes should be written in rawSQL.You can also take a look at Doctrine Migration Tool. It allows you to write migrations using only
Doctrineobjects, thus skipping writing rawSQLpart. Not sure if it exists forDoctrine 2.0though.More insights here.