This website requires JavaScript.
Explore
Help
Sign in
grishka
/
lemmy
Watch
1
Star
0
Fork
You've already forked lemmy
0
Code
Issues
Pull requests
Projects
Releases
Wiki
Activity
1c9f0c2bed
lemmy
/
migrations
/
2023-06-06-104440_index_post_url
/
up.sql
2 lines
40 B
MySQL
Raw
Normal View
History
Unescape
Escape
Add db index for post.url column (#2929) * Add db index for post.url column As mentioned in https://github.com/LemmyNet/lemmy/issues/2877#issuecomment-1576439829 Not sure if its preferable to do this, or make a combined index which includes post.nsfw, post.removed, post.deleted * remove unique
2023-06-07 15:31:24 +00:00
create
index
idx_post_url
on
post
(
url
)
;
Reference in a new issue
Copy permalink