This website requires JavaScript.
Explore
Help
Sign in
LemmyNet
/
lemmy
Watch
2
Star
0
Fork
You've already forked lemmy
0
mirror of
https://github.com/LemmyNet/lemmy.git
synced
2024-11-23 04:41:19 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
c6bdddca78
lemmy
/
migrations
/
2024-10-30-155932_increase_post_url_max_length
/
down.sql
6 lines
79 B
MySQL
Raw
Normal View
History
Unescape
Escape
Adding a URL max length lemmy error. (#4960) * Adding a URL max length error. - Also increasing the post.url max length to 2000 (seems standard) - I ran into this when fixing torrent support, which often use longer urls. * Fixing sql_format.
2024-08-04 13:45:53 +00:00
ALTER
TABLE
post
ALTER
COLUMN
url
TYPE
varchar
(
512
)
;
Run analyze after changing post.url type (ref #4983)
2024-10-30 09:59:21 +00:00
ANALYZE
post
(
url
)
;
Reference in a new issue
Copy permalink