This website requires JavaScript.
Explore
Help
Sign In
Mirrors
/
lemmy
Watch
2
Star
0
Fork
You've already forked lemmy
0
mirror of
https://github.com/LemmyNet/lemmy
synced
2024-11-13 00:07:08 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
05c3eae016
lemmy
/
migrations
/
2024-08-03-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) (#5148) * Run analyze after changing post.url type (ref #4983) * rename back --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
2024-11-04 13:16:54 +00:00
ANALYZE
post
(
url
)
;
Reference in a new issue
Copy permalink