]> Untitled Git - lemmy.git/blobdiff - src/code_migrations.rs
Moving matrix_user_id to person table. #1438
[lemmy.git] / src / code_migrations.rs
index bd67fe699da6509b9ccf662129cc25f240b94765..e9b43356a769eae4359aa752db2e2d8166b13ae2 100644 (file)
@@ -70,6 +70,7 @@ fn user_updates_2020_04_02(conn: &PgConnection) -> Result<(), LemmyError> {
       last_refreshed_at: Some(naive_now()),
       inbox_url: None,
       shared_inbox_url: None,
+      matrix_user_id: None,
     };
 
     Person::update(&conn, cperson.id, &form)?;