Changes between Initial Version and Version 1 of Ticket #35311
- Timestamp:
- Mar 16, 2024, 3:39:14 AM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35311 – Description
initial v1 14 14 SQLMIGRATE generates a wrong code : 15 15 16 ''CREATE INDEX "name_gin_trgm_title_affaire" ON "affaires_affaire" USING gin ((LOWER("title") ));''16 ''CREATE INDEX "name_gin_trgm_title_affaire" ON "affaires_affaire" USING gin ((LOWER("title"), name=gin_trgm_ops));'' 17 17 18 18 Instead of (too many parenthesis) : 19 19 20 ''CREATE INDEX "name_gin_trgm_title_affaire" ON "affaires_affaire" USING gin (LOWER("title") );''20 ''CREATE INDEX "name_gin_trgm_title_affaire" ON "affaires_affaire" USING gin (LOWER("title"), name=gin_trgm_ops);'' 21 21 22 22 There is a manual workaround, but its annoying.