first commit

This commit is contained in:
2026-02-07 15:54:21 +03:00
commit 74964c74f3
51 changed files with 3701 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace andrewkydev\Database\Schema;
final class SqlDialect {
public const MYSQL = 'mysql';
public const POSTGRES = 'postgres';
}