Reduce max size of thread titles

This commit is contained in:
swagg boi 2022-07-30 02:41:26 -04:00
parent 78a5683389
commit 8290eb795a
2 changed files with 6 additions and 0 deletions

3
migrations/2/down.sql Normal file
View file

@ -0,0 +1,3 @@
ALTER TABLE threads
ALTER COLUMN thread_title
TYPE VARCHAR(256);

3
migrations/2/up.sql Normal file
View file

@ -0,0 +1,3 @@
ALTER TABLE threads
ALTER COLUMN thread_title
TYPE VARCHAR(128);