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

It would be great if you could add SQLite export. Thanks!

help wanted
pkg: core

Postgres export comes close, but some of the features like composite PK) definitions aren't equivalent _syntactically_. Happy to provide syntax mapping from postgres to snowflake, and would have created a...

I solved this problem by replacing - with open("output.dmbl", "w") + with open("output.dmbl", "w", encoding='utf-8') i could be helpful for someone Honestly, excuse me if i am doing something wrong...

Hi there, great project! Would like to ask if there is any way to specify a Database? E.g. how can I specify that some of my tables are under the...

Is it possible to add the possibility to use 0,* and 0,1 relation?

# Annotation ## Current problems * Every time new concepts are requested for DBML, we have to look into how those concepts work for other databases such as MySQL and...

enhancement

Can we add more metadata in DBML, like: ? Thank you. 1. definition of a data filed (i.e.: gender: a socially constructed definition of women and men) 2. list of...

Hi, sql2dmbl returns an error when my table definition includes default time values Sample create table script ``` CREATE TABLE test_table ( id INT NOT NULL , time_field TIME DEFAULT...

Hello! I am translating the grammar of dbml to be used by the tree-sitter parser. You can check its development here: https://github.com/saskenuba/tree-sitter-dbml For those who don't know, [tree-sitter](https://tree-sitter.github.io/tree-sitter/) is a...

I am create a table table admin as A { id int [pk,increment] username varchar(16) pasword varchar(32) status varchar(1) } but i can set this engine and charset. ENGINE=MyISAM DEFAULT...