Files
thoughts/crates/adapters/postgres/migrations/007_content_text.sql
Gabriel Kaszewski e3251b6928
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 9m33s
test / unit (pull_request) Successful in 16m18s
test / integration (pull_request) Failing after 16m51s
fix: migrate thoughts.content VARCHAR(128) → TEXT to allow remote posts of any length
2026-05-15 01:15:09 +02:00

4 lines
189 B
SQL

-- Remote ActivityPub posts can exceed 128 characters.
-- The 128-char limit is enforced at the application layer for local posts only.
ALTER TABLE thoughts ALTER COLUMN content TYPE TEXT;