You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in commit 4389a25 we modified the comparison method for the default values of the columns.
However, after the revision, new problems have arisen.
We usually set the column's default value of the 'Boolean' type to false or true, but in MySQL, the Boolean is stored as tinyint, which has a value of 0 or 1, so in this new comparison method, the default value compare result is always false.
The text was updated successfully, but these errors were encountered:
in commit 4389a25 we modified the comparison method for the default values of the columns.
However, after the revision, new problems have arisen.
We usually set the column's default value of the 'Boolean' type to false or true, but in MySQL, the Boolean is stored as tinyint, which has a value of 0 or 1, so in this new comparison method, the default value compare result is always false.
The text was updated successfully, but these errors were encountered: