We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
db struct:
create table if not exists base_color (id int(11) auto_increment not null , enable bit(1) default 'b' 1 '' COMMENT 'enable:1true,0false' not null , primary key (id)) ENGINE = InnoDB default CHARSET = utf8 collate = utf8_general_ci COMMENT = 'basecolor'
base_color
id
enable
ERROR.log: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1''
Right syntax is :
enable bit(1) default b'1'
The text was updated successfully, but these errors were encountered:
please paste the origin sql to create the table in source mysql.
Sorry, something went wrong.
No branches or pull requests
db struct:
create table if not exists
base_color
(id
int(11) auto_increment not null ,enable
bit(1) default 'b' 1 '' COMMENT 'enable:1true,0false' not null ,primary key (
id
)) ENGINE = InnoDB default CHARSET = utf8 collate = utf8_general_ci COMMENT = 'basecolor'ERROR.log: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1''
Right syntax is :
enable
bit(1) default b'1'The text was updated successfully, but these errors were encountered: