stemizer / php-migration
一个为无框架的PHP应用程序提供的mysql迁移工具
v1.0.0-b
2020-07-06 06:57 UTC
Requires
- php: >=5.3.2
Requires (Dev)
- phpunit/phpunit: 9.2.4
- squizlabs/php_codesniffer: 3.5.5
This package is auto-updated.
Last update: 2024-09-15 02:52:21 UTC
README
一个为无框架的PHP应用程序提供的mysql迁移工具
安装
您可以使用 Composer 将此包依赖项添加到项目中
composer require stemizer/php-migration
如果您只在开发期间需要此包
composer require --dev stemizer/php-migration
使用示例
/** * pdo instance */ $instance = new PDO(args); /** * example migration scripts : * 0-create-tbl-foo.sql * 1-modify-tbl-foo.sql * 2-another-migration.sql * 2-foo-new-fields.sql * 3-foo-new-index.sql */ $scripts_dir = '/var/www/myproject/any/path'; /** * no output */ $migration = new YD\Migration($instance, $scripts_dir); $migration->run();