drawdb
drawdb copied to clipboard
[suggestion]Comment in export sql
now:
/* user table */
CREATE TABLE `table_user` (
`user_id` BIGINT NOT NULL AUTO_INCREMENT UNIQUE,
-- userName
`user_name` VARCHAR(255),
`dept_id` BIGINT,
PRIMARY KEY(`user_id`)
);
expect:
CREATE TABLE `table_user` (
`user_id` BIGINT NOT NULL AUTO_INCREMENT UNIQUE,
`user_name` VARCHAR(255) comment 'userName',
`dept_id` BIGINT,
PRIMARY KEY(`user_id`)
) comment 'user table';
There's a PR for this that I'll merge some time this week
it's works of mysql, but not pgsql, thanks.