Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[suggestion]Comment in export sql #78

Open
changeAtLater opened this issue Apr 30, 2024 · 1 comment
Open

[suggestion]Comment in export sql #78

changeAtLater opened this issue Apr 30, 2024 · 1 comment

Comments

@changeAtLater
Copy link

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';
@1ilit
Copy link
Member

1ilit commented May 6, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants