Commit a6335ae
fix(asana): remove MySQL-specific gorm type tags for PostgreSQL compatibility (#8836)
Remove explicit `gorm:"type:double"` and `gorm:"type:int unsigned"` tags
from the Asana task migration struct. PostgreSQL does not have a `double`
type (it uses `double precision`) and does not support `UNSIGNED` integer
qualifiers. Without explicit tags, GORM infers the correct column type
per dialect automatically.
Follows the same pattern as #8779 which fixed equivalent issues in the
copilot plugin.
closes #8835
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Klesh Wong <klesh@qq.com>1 parent d7d5fa6 commit a6335ae
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
| |||
0 commit comments