drawdb-io / drawdb

Free, simple, and intuitive online database design tool and SQL generator.
https://drawdb.vercel.app
MIT License
12.08k stars 851 forks source link

[Bug] MySQL syntax error on export #141

Closed theflu closed 1 week ago

theflu commented 1 week ago

Version: https://drawdb.vercel.app/

When adding multiple indexes to a table it adds a , after ; before the next index.

Example:

CREATE UNIQUE INDEX `tokens_index_0`
ON `tokens` (`uid`, `type`);,
CREATE UNIQUE INDEX `tokens_index_1`
ON `tokens` (`token`);