markdown Zend框架3:学说迁移

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Zend框架3:学说迁移相关的知识,希望对你有一定的参考价值。

Install
```bash
$ composer require doctrine/migrations
```
Config
```php
return [
    'doctrine' => [
        // migrations configuration
        'migrations_configuration' => [
            'orm_default' => [
                'name' => 'Doctrine Database Migrations',
                'namespace' => 'Migration',
                'table' => 'migration',
                'column_name' => 'version',
                'column_length' => 255,
                'executed_at_column_name' => 'executed_at',
                'directory' => __DIR__ . '/../../module',
                'all_or_nothing' => true,
            ],
        ],
    ]
];
```
Commands
```bash
$ ./vendor/bin/doctrine-module migrations:generate
$ ./vendor/bin/doctrine-module migrations:migrate
$ ./vendor/bin/doctrine-module migrations:execute 20180912072823 --up
$ ./vendor/bin/doctrine-module migrations:execute 20180912072823 --down
```

以上是关于markdown Zend框架3:学说迁移的主要内容,如果未能解决你的问题,请参考以下文章

在学说2和zend框架2中如何使用缓存?

markdown Zend框架3:会话

如何创建队列系统以在zend框架2.2中发送电子邮件。

Symfony 4.3 学说迁移问题

Zend 框架有代码生成器吗?

markdown Zend Framework 3:概述