lemmy/migrations/2021-03-20-185321_move_matrix_id_to_person/up.sql

9 lines
206 B
MySQL
Raw Normal View History

alter table person add column matrix_user_id text;
update person p
set matrix_user_id = lu.matrix_user_id
from local_user lu
where p.id = lu.person_id;
alter table local_user drop column matrix_user_id;