dbml
dbml copied to clipboard
Database Markup Language (DBML), designed to define and document database structures
## Summary * Add `isOk_and` to `Option` type to support more functional-programming-like checks. * Fix this error: https://github.com/user-attachments/assets/5e5e1de6-e6dd-40f8-bd3a-cacd5f37980c This is caused by the check in `funcAppToElem` assuming that `extractVariableNode` always...
### Problem The workaround for un-supported settings by adding the setting name into the column type name, such as id “bigint unsigned” [pk] doesn't work ### Example Take an example...
Bumps [jws](https://github.com/brianloveswords/node-jws) from 3.2.2 to 3.2.3. Release notes Sourced from jws's releases. v3.2.3 Changed Fix advisory GHSA-869p-cjfg-cm3x: createSign and createVerify now require that a non empty secret is provided (via...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.3.6 to 6.4.1. Release notes Sourced from vite's releases. [email protected] Please refer to CHANGELOG.md for details. v6.4.1 Please refer to CHANGELOG.md for details. [email protected] Please refer to...
Bumps [node-forge](https://github.com/digitalbazaar/forge) from 1.3.1 to 1.3.3. Changelog Sourced from node-forge's changelog. 1.3.3 - 2025-12-02 Fixed [pkcs12] Make digestAlgorithm parameters optional to fix PKCS#12/PFX issues introduced in 1.3.2. 1.3.2 - 2025-11-25...
Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.1.0 to 13.2.1. Release notes Sourced from mdast-util-to-hast's releases. 13.2.1 Fix ab3a795 Fix support for spaces in class names Types efb5312 Refactor to use @imports a5bc210 Add...
## Summary * Short summary of the task, what have been done etc * Please include screenshots whenever possible (important). ## Issue (issue link here) ## Lasting Changes (Technical) (please...
I'm hitting this same kind of error running `dbdocs build` ``` # offending line "onboarding_alt_pii_fields" "varchar[]" [not null, default: 'ARRAY[_name, date_of_birth}']'] ``` ``` Syntax error at line 1049 column 93....
Hi guys, I'm using the `connector.fetchSchemaJson(connection, 'mssql');` to get my DB scripted. Works fine except it outputs badly encoded chars. eg german: `f�r` instead of `für`, `Integrit�t` for `Integrität` I...
Currently it's not possible to create aliases for enums like for tables. ``` Table users.user as User { sex Sex } Enum users.sex as Sex { MALE FEMALE } ```