File size: 220 Bytes
b80fc11
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { pgGenerate } from "drizzle-dbml-generator"; // Using Postgres for this example
import * as schema from "./index";

const out = "./schema.dbml";
const relational = true;

pgGenerate({ schema, out, relational });