add migration to postgres sql to fix VARCHAR length to 32

This commit is contained in:
waveringana 2025-02-19 21:22:11 -05:00
parent 113ef1c2e6
commit 030116db61

View file

@ -0,0 +1,3 @@
-- PostgreSQL migration
ALTER TABLE links ALTER COLUMN short_code TYPE VARCHAR(32);