mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
Dessalines
9197b39ed6
- Creating an activity table. - Adding some federation-related columns to the user_ and community tables. - Generating the actor_id and keys in code, updating the tables.
16 lines
326 B
SQL
Vendored
16 lines
326 B
SQL
Vendored
drop table activity;
|
|
|
|
alter table user_
|
|
drop column actor_id,
|
|
drop column private_key,
|
|
drop column public_key,
|
|
drop column bio,
|
|
drop column local,
|
|
drop column last_refreshed_at;
|
|
|
|
alter table community
|
|
drop column actor_id,
|
|
drop column private_key,
|
|
drop column public_key,
|
|
drop column local,
|
|
drop column last_refreshed_at;
|