誰かがテータベース構造を変更した場合は、反映するために、コンテナにログインし、migrationの実行を行う必要があります。
※CakeSchemaはなくなったので、Console/cake schemaコマンドは使えません
bin/cake migrations migrate -p BaserCore
bin/cake migrations seed -p BaserCore
# 特定のシードファイルを指定する場合
bin/cake migrations seed --seed SamplesSeed -p BaserCore
bin/cake migrations dump
bin/cake bake migration_diff CreateTableName -p PluginName
bin/cake bake seed --data TableName -p PluginName