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 GitHub
parent 4e12e25c59
commit c78de25652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);