drawdb icon indicating copy to clipboard operation
drawdb copied to clipboard

Support for unsigned types

Open itning opened this issue 1 year ago • 2 comments

It looks like the type selection unsigned is not supported?

itning avatar Jul 28 '24 03:07 itning

CREATE TABLE example_table ( id INT UNSIGNED NOT NULL, age TINYINT UNSIGNED, salary DECIMAL(10,2) UNSIGNED, score BIGINT UNSIGNED );

happysangwan avatar Jul 28 '24 14:07 happysangwan

CREATE TABLE example_table ( id INT UNSIGNED NOT NULL, age TINYINT UNSIGNED, salary DECIMAL(10,2) UNSIGNED, score BIGINT UNSIGNED );

you mean that only support import sql source?

itning avatar Jul 29 '24 02:07 itning