mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 06:36:14 +00:00
6 lines
222 B
MySQL
6 lines
222 B
MySQL
|
-- Change the post url max limit to 2000
|
||
|
-- From here: https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers#417184
|
||
|
ALTER TABLE post
|
||
|
ALTER COLUMN url TYPE varchar(2000);
|
||
|
|