infuse / migrations
Infuse框架的迁移模块
1.2
2017-08-04 13:48 UTC
Requires
- php: >=5.6.0
- robmorgan/phinx: ~0.8
Requires (Dev)
- infuse/infuse: ~1.4
- phpunit/phpunit: 5.7.*
This package is auto-updated.
Last update: 2024-09-20 13:33:36 UTC
README
Infuse框架的数据库迁移模块。基于Phinx构建。
安装
-
使用 composer 安装此包
composer require infuse/migrations
-
将控制台命令添加到您的应用程序配置中的
console.commands
'console' => [ // ... 'commands' => [ // ... 'Infuse\Migrations\Console\MigrateCommand' ] ]
-
将您的迁移添加到应用程序配置中的
modules.migrations
'modules' => [ // .. 'migrations' => [ 'auth', 'users', // ... ] ]