Fix length of post_report.original_post_name db field (fixes #2311) (#2315)

This commit is contained in:
Nutomic 2022-06-14 05:20:01 +00:00 committed by Felix Ableitner
parent 2e7fe7533a
commit 41ad863fac
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1 @@
alter table post_report alter column original_post_name type varchar(100);

View file

@ -0,0 +1,2 @@
-- adjust length limit to match post.name
alter table post_report alter column original_post_name type varchar(200);