pieterclaerhout / yii-dbmigrations
- Source
- Commits
- Network (1)
- Issues (2)
- Downloads (4)
- Wiki (1)
- Graphs
-
Branch:
master
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
A database migrations engine for the Yii framework — Read more
-
Working under PHP 5.3 i found a depricated function - it's a "split" (in CDbMigration.php). I think that it can be replaced by "explode" function
Comments
-
Check is a migration file is a valid one
0 comments Created 6 months ago by pieterclaerhoutWhen we list the possible migrations, more checking should happen to make sure that it's a valid migration. We should check the filename and also the class names.
Comments
-
Renaming a field should retain it's data type
0 comments Created 6 months ago by pieterclaerhoutWhen we rename a column, it's data type should be retained.
Comments
-
We should wrap the up and down methods in a migration in a transaction.
Comments
-
Should we remember the creation date in the schema_version table
1 comment Created 6 months ago by pieterclaerhoutThat would make it easier to find out when a migration was applied.
Comments
pieterclaerhout
Mon Jun 15 12:34:51 -0700 2009
| link
Won't do as it's not really useful information.
-
Add documentation about how to write migrations
1 comment Created 6 months ago by pieterclaerhoutWe need to write documentation on how migrations need to be created.
Comments
pieterclaerhout
Mon Jun 15 12:35:02 -0700 2009
| link
Done.
-
Migrations from modules need to be loaded as well
1 comment Created 6 months ago by pieterclaerhoutIf a module contains a migrations directory, we need to load these as well.
Comments
pieterclaerhout
Mon Jun 15 12:34:35 -0700 2009
| link
Done.
-
Docstrings need to be added to the documentation
1 comment Created 6 months ago by pieterclaerhout -
The migrate command needs to check if a database is configured
1 comment Created 6 months ago by pieterclaerhoutWe need to make sure a valid database connection before we execute any command.
Comments
pieterclaerhout
Mon Jun 15 12:34:27 -0700 2009
| link
Implemented.





I just fixed it.