We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f25f1b6 commit 90dea2aCopy full SHA for 90dea2a
src/sources/mysql/mysql-cast-rules.lisp
@@ -66,10 +66,12 @@
66
:target (:type "bigint" :drop-typemod t))
67
(:source (:type "int" :unsigned t)
68
69
-
+
70
(:source (:type "int" :unsigned t :auto-increment t)
71
:target (:type "bigserial" :drop-typemod t))
72
+ (:source (:type "int" :signed t :auto-increment t)
73
+ :target (:type "serial" :drop-typemod t))
74
75
;; we need the following to benefit from :drop-typemod
76
(:source (:type "tinyint") :target (:type "smallint" :drop-typemod t))
77
(:source (:type "smallint") :target (:type "smallint" :drop-typemod t))
0 commit comments