You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2021-03-20-185321_move_matr.../down.sql

9 lines
205 B
MySQL

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