aboutsummaryrefslogtreecommitdiff
path: root/databaseschema.psql
diff options
context:
space:
mode:
authorFChannel <>2022-07-16 09:49:54 -0700
committerFChannel <>2022-07-16 11:13:28 -0700
commit3a7664d404bca40cb3234924fa969c0ae133d085 (patch)
tree2468e548c760f52274178cdf0f6a0d3923f59b65 /databaseschema.psql
parenta22b213ddef7e86ef49366ffd6351adf0d28fcbe (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.psql5
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