Address outstanding merging issues with cloud branch (#17160)

This commit is contained in:
Claudio Costa
2021-03-17 10:39:46 +01:00
committed by GitHub
parent c5e1b36dd3
commit d3a003dcb2
6 changed files with 79 additions and 4 deletions

View File

@@ -626,7 +626,7 @@ CREATE TABLE `Posts` (
`Props` text,
`Hashtags` text,
`Filenames` text,
`FileIds` varchar(150) DEFAULT NULL,
`FileIds` text,
`HasReactions` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`Id`),
KEY `idx_posts_update_at` (`UpdateAt`),

View File

@@ -398,7 +398,7 @@ CREATE TABLE public.posts (
props character varying(8000),
hashtags character varying(1000),
filenames character varying(4000),
fileids character varying(150),
fileids character varying(300),
hasreactions boolean
);