infuse/migrations

Infuse框架的迁移模块

1.2 2017-08-04 13:48 UTC

This package is auto-updated.

Last update: 2024-09-20 13:33:36 UTC


README

Build Status Coverage Status Latest Stable Version Total Downloads

Infuse框架的数据库迁移模块。基于Phinx构建。

安装

  1. 使用 composer 安装此包

     composer require infuse/migrations
    
  2. 将控制台命令添加到您的应用程序配置中的 console.commands

    'console' => [
    	// ...
    	'commands' => [
    		// ...
    		'Infuse\Migrations\Console\MigrateCommand'
    	]
    ]
  3. 将您的迁移添加到应用程序配置中的 modules.migrations

    'modules' => [
    	// ..
    	'migrations' => [
    		'auth',
    		'users',
    		// ...
    	]
    ]