Database migrations, ActiveRecord:Migration wannabe
I just recently finished a 'beta' version of a ActiveRecord:Migration wannabe database schema migration system in PHP at work. It allows me to version the database schema/structure easily and allow for easy database structure updates when updating an install of a web app on some site. Eventually it could do downgrades like the rails version too but that's not something I'll worry about right away. It does function, isn't as elegant as AR:Migration but it does the job which is pretty cool. It might join PHPFlash class as one of my most useful chunks of code.
10:37 PM | 0 Comments | Tags: Database, oop, PHP, Rails, Rainstorm