Commit ebaf080
tengtian
fix(asana): use float8 instead of double for PostgreSQL compatibility
The migration used gorm:"type:double" which is MySQL-specific.
PostgreSQL does not have a "double" type and fails with:
ERROR: type "double" does not exist (SQLSTATE 42704)
Changed to float8 which works on both MySQL (alias for double) and
PostgreSQL (alias for double precision).
Closes #88351 parent adaa008 commit ebaf080
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 | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments