We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Here is a TypeScript object that the mermaid file will be parsed to. It will be used to generate the SQL.
interface Table { tableName: string; columns: Column[]; }; interface Column { columnName: string; type: string; // "varchar(40)" isPK: boolean; order: number; // first element of the above array is 0 here, etc columnOverride: string | null; // decorators ie "NULL", "CONSTRAINT ...", "ALIAS ..." FK: };