diff options
author | FChannel <> | 2022-07-16 09:49:54 -0700 |
---|---|---|
committer | FChannel <> | 2022-07-16 11:13:28 -0700 |
commit | 3a7664d404bca40cb3234924fa969c0ae133d085 (patch) | |
tree | 2468e548c760f52274178cdf0f6a0d3923f59b65 /databaseschema.psql | |
parent | a22b213ddef7e86ef49366ffd6351adf0d28fcbe (diff) |
fixed replies to post not showing up when following other boardsv0.1.1
added content length changes to alter database
Diffstat (limited to 'databaseschema.psql')
-rw-r--r-- | databaseschema.psql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/databaseschema.psql b/databaseschema.psql index d4b2616..c56457e 100644 --- a/databaseschema.psql +++ b/databaseschema.psql @@ -254,4 +254,7 @@ activity_id varchar(100) CREATE TABLE IF NOT EXISTS locked( actor_id varchar(100), activity_id varchar(100) -);
\ No newline at end of file +); + +ALTER TABLE activitystream ALTER COLUMN content TYPE varchar(4500); +ALTER TABLE cacheactivitystream ALTER COLUMN content TYPE varchar(4500);
\ No newline at end of file |