Web アプリでの移行に Phinx を使用しています。
私のphinx.yml:
paths:
migrations: %%PHINX_CONFIG_DIR%%/migrations
environments:
default_migration_table: app_migrations
default_database: app_database
development:
adapter: mysql
host: localhost:8888
name: app_database
user: ''
pass: ''
port:8889
ポート apache:8888 と mysql:8889 が実行されている mamp があります。
データベース app_database は存在します。
テーブル app_migrations が存在しません (移行中に作成されますよね?)
すでにいくつかの移行を作成しましたが、今はそれらを実行しようとしています:
php vendor/bin/phinx migrate -e development
コンソールでの出力:
Phinx by Rob Morgan - https://phinx.org. version 0.5.1
using config file ./phinx.yml
using config parser yaml
using migration path /path/to/directory/migrations
using environment development
using adapter mysql
using database app_database
その後、停止し、何も起こりません...
誰でもこの問題で私を助けることができますか?
ありがとう、そしてご挨拶!