const postsSchema = new Schema(
{
post_id: Number,
groupId:Number,
date: Number,
...
}
)
const groupSchema = new Schema(
{
groupId:Number,
...
}
)