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

This commit is contained in:
Felix Ableitner 2022-06-13 14:50:04 +02:00 committed by Dessalines
parent 4e12e25c59
commit 8e14caf67f
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);