rDrama/migrations/20240307-add-group-dms.sql

3 lines
136 B
MySQL
Raw Normal View History

2024-03-08 03:20:37 +00:00
ALTER TABLE comments add COLUMN group_dm_ids int[];
update comments set group_dm_ids=ARRAY[author_id, sentto] where sentto is not null;