An introduction to database migrations in Yii
If you’re new to Yii migrations, these sources might be a help for you:
- General information: Database Migration topic in The Definitive Guide to Yii.
How to create initial migration basing on current database state, explains this Stack Overflow question and GitHub Gist (with
InitialDbMigrationCommand
class’ code) to support it.
To use migrations, you have to properly configure console version of your Yii application. Details follows.
Read More “An introduction to database migrations in Yii”