Start MySQL implementation: config template, PDO layer and migrations

This commit is contained in:
Alex Assistant
2026-02-20 14:07:50 +03:00
parent e22476da57
commit 883ff30877
6 changed files with 182 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
return [
'db' => [
'host' => '127.0.0.1',
'port' => 3306,
'name' => 'photo_gallery',
'user' => 'gallery_user',
'pass' => 'change_me',
'charset' => 'utf8mb4',
],
];