Fix mysql field name not getting exported (#233)

This commit is contained in:
1ilit 2024-08-28 15:12:23 +04:00
parent 6e18b6a4f1
commit 8f185bc695

View File

@ -1,4 +1,4 @@
import { exportFieldComment, parseDefault } from "./shared";
import { parseDefault } from "./shared";
import { dbToTypes } from "../../data/datatypes";
@ -9,7 +9,7 @@ export function toMariaDB(diagram) {
`CREATE OR REPLACE TABLE \`${table.name}\` (\n${table.fields
.map(
(field) =>
`${exportFieldComment(field.comment)}\t\`${
`\t\`${
field.name
}\` ${field.type}${field.unsigned ? " UNSIGNED" : ""}${field.notNull ? " NOT NULL" : ""}${
field.increment ? " AUTO_INCREMENT" : ""