This website requires JavaScript.
Explore
Help
Sign In
ekzyis
/
stacker.news
Watch
1
Star
0
Fork
You've already forked stacker.news
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b8f57e0c3c
stacker.news
/
prisma
/
migrations
/
20220412190704_item_path_index
/
migration.sql
1 line
81 B
MySQL
Raw
Normal View
History
Unescape
Escape
make path index compatible with postgres 12
2022-04-13 21:24:24 +00:00
CREATE
INDEX
IF
NOT
EXISTS
"
item_gist_path_index
"
ON
"
Item
"
USING
GIST
(
"
path
"
)
;