Time-related column types (DATE, DATETIME, TIMESTAMP, TIME, etc.) need their literal default values wrapped in single quotes. Previously, the normalize_default function returned values verbatim, so a DATETIME default like "2024-01-01 00:00:00" would generate invalid SQL: DEFAULT 2024-01-01 00:00:00 instead of: DEFAULT '2024-01-01 00:00:00' SQL expressions (CURRENT_TIMESTAMP, NOW(), etc.) are correctly left unquoted. Non-temporal types (INT, VARCHAR, etc.) are unaffected. |
||
|---|---|---|
| .. | ||
| dbx-core | ||
| dbx-web | ||
| README.md | ||
README.md
Crates
Rust crates for DBX live here.
Directories
dbx-core/- shared database core, drivers, schema/query logic, import/export, transfer, and plugin support.dbx-web/- the Docker/web backend service binary published asdbx-web.
The workspace root is defined in the repository-level Cargo.toml.