webman/config/plugin/webman-micro/migrations/app.php

22 lines
658 B
PHP
Raw Permalink Normal View History

2025-02-15 12:13:10 +08:00
<?php
return [
'enable' => true,
"paths" => [
"migrations" => "database/migrations",
"seeds" => "database/seeders"
],
"environments" => [
"default_migration_table" => "phinxlog",
"default_environment" => "product",
"product" => [
"adapter" => "mysql",
"host" => getenv("DB_HOST", '149.129.107.38'),
"name" => getenv("DB_NAME", 'wechatapplet'),
"user" => getenv("DB_USER", 'wechatapplet'),
"pass" => getenv("DB_PASSWORD", 'Br6D722xXGB4tR7Z'),
"port" => getenv("DB_PORT", '3306'),
"charset" => "utf8"
]
]
];