[Gekidou] Allow multiple posts in thread and posts in channel for a specific root or channel (#5594)

* Allow multiple posts in thread and posts in channel for a specific root or channel

* Apply suggestions from code review

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>
This commit is contained in:
Elias Nahum
2021-08-04 15:43:25 -04:00
committed by GitHub
parent 733b10377b
commit 7c5b3a1574
15 changed files with 34 additions and 12 deletions

View File

@@ -10,6 +10,7 @@ const {POSTS_IN_THREAD} = MM_TABLES.SERVER;
export default tableSchema({
name: POSTS_IN_THREAD,
columns: [
{name: 'root_id', type: 'string', isIndexed: true},
{name: 'earliest', type: 'number'},
{name: 'latest', type: 'number'},
],