dbml icon indicating copy to clipboard operation
dbml copied to clipboard

Database Markup Language (DBML), designed to define and document database structures

Results 179 dbml issues
Sort by recently updated
recently updated
newest added

Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.0 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...

dependencies

Example of a failing import: ``` CREATE TABLE test_table ( "name" varchar NOT NULL, id varchar NULL, linked_name varchar NOT NULL, CONSTRAINT test_table_pk PRIMARY KEY ("name", id), CONSTRAINT test_table_fk FOREIGN...

bug

I use SQL domains frequently to create custom types with set limitations. For example to define types that match zserio: ```sql CREATE DOMAIN varint AS bigint CHECK (VALUE >= -9223372036854775808...

BigQuery has support for partitioning and clustering columns, and this doesn't appear to be supported in DBML. Would it be possible to add support for these features? I'm thinking it...

i tried sql2dbml. but it showed error. sql : create table `a` ( `id` varchar(22) binary ); error msg: SyntaxError: You have a syntax error at "test.sql" line 2 column...

enhancement

my dbms is mysql. And my dbms timestamp defulat value is not null But I export this code to mysql , the null option disappears. this code ``` withdrawal_at timestamp...

bug

Include instructions for npx ## Summary * Including instructions in readme to use with npx ## Lasting Changes (Technical) Documentations chane ## Checklist Please check directly on the box once...

The table definition: ``` Table Account { ID "int unsigned" [pk, increment, not null] Username varchar(255) [not null] Password varchar [not null] Note: 'The necessary details to identify and authenticate...

Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tmpl&package-manager=npm_and_yarn&previous-version=1.0.4&new-version=1.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Worth to add structs with some simple syntax like this: ``` dbml Struct some_struct { field_a integer field_b text } ``` Reason is PostgreSQL, Oracle DB, IBM DataStage, Ms SQL...