Commit 47b1f3e
fix(asana): remove MySQL-specific gorm type tags for PostgreSQL compatibility
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>1 parent adaa008 commit 47b1f3e
1 file changed
Lines changed: 2 additions & 2 deletions
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
| |||
0 commit comments