This commit is contained in:
Sebastian Molenda
2026-05-12 21:10:38 +02:00
commit ab96d82fcf
2544 changed files with 721700 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"paths": {
"migrations": "%%PHINX_CONFIG_DIR%%/db/migrations",
"seeds": "%%PHINX_CONFIG_DIR%%/db/seeds"
},
"environments": {
"default_migration_table": "phinxlog",
"default_environment": "development",
"production": {
"adapter": "mysql",
"host": "localhost",
"name": "production_db",
"user": "root",
"pass": "",
"port": 3306,
"charset": "utf8"
},
"development": {
"adapter": "mysql",
"host": "localhost",
"name": "development_db",
"user": "root",
"pass": "",
"port": 3306,
"charset": "utf8"
},
"testing": {
"adapter": "mysql",
"host": "localhost",
"name": "testing_db",
"user": "root",
"pass": "",
"port": 3306,
"charset": "utf8"
}
},
"version_order": "creation"
}
+41
View File
@@ -0,0 +1,41 @@
<?php
return
[
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'production' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'production_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
],
'development' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'development_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
],
'testing' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'testing_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
]
],
'version_order' => 'creation'
];
+35
View File
@@ -0,0 +1,35 @@
paths:
migrations: '%%PHINX_CONFIG_DIR%%/db/migrations'
seeds: '%%PHINX_CONFIG_DIR%%/db/seeds'
environments:
default_migration_table: phinxlog
default_environment: development
production:
adapter: mysql
host: localhost
name: production_db
user: root
pass: ''
port: 3306
charset: utf8
development:
adapter: mysql
host: localhost
name: development_db
user: root
pass: ''
port: 3306
charset: utf8
testing:
adapter: mysql
host: localhost
name: testing_db
user: root
pass: ''
port: 3306
charset: utf8
version_order: creation