mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-20 14:45:42 +02: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 });
|