mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
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 });
|