This website requires JavaScript.
Explore
Help
Register
Sign In
fedi
/
lemmy
Watch
1
Star
0
Fork
You've already forked lemmy
0
mirror of
https://github.com/LemmyNet/lemmy.git
synced
2024-11-08 09:24:17 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
39eeb2cbb3
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