stemizer/php-migration
最新稳定版本:v1.0.0-b
Composer 安装命令:
composer require stemizer/php-migration
包简介
a mysql migration tool for php applications without framework
README 文档
README
a mysql migration tool for php applications without framework
installation
you can add this package dependency to your project using composer:
composer require stemizer/php-migration
if you only need this package during development:
composer require --dev stemizer/php-migration
usage example
/** * 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();
统计信息
- 总下载量: 129
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: -
- 更新时间: 2020-07-05