drawdb icon indicating copy to clipboard operation
drawdb copied to clipboard

[suggestion]Comment in export sql

Open changeAtLater opened this issue 1 year ago • 2 comments

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';

changeAtLater avatar Apr 30 '24 07:04 changeAtLater

There's a PR for this that I'll merge some time this week

1ilit avatar May 06 '24 08:05 1ilit

it's works of mysql, but not pgsql, thanks.

jackman0925 avatar Jun 16 '24 11:06 jackman0925