update CHANGELOG.md

pull/393/head
Michael Li 9 months ago
parent 9ca38cb4b5
commit 43cb264956
No known key found for this signature in database

@ -149,6 +149,16 @@ All notable changes to paopao-ce are documented in this file.
```
- add message filter support for message page.
- add read all unread message and display unread message count support for message page.
- add support follow user embed to index trends enable navigation user tweets by slide bar.
mirgration database first(sql ddl file in `scripts/migration/**/*_user_relation.up.sql`):
```sql
CREATE VIEW p_user_relation AS
SELECT user_id, friend_id he_uid, 5 AS style
FROM p_contact WHERE status=2 AND is_del=0
UNION
SELECT user_id, follow_id he_uid, 10 AS style
FROM p_following WHERE is_del=0;
```
## 0.4.2
### Fixed

Loading…
Cancel
Save