mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-23 12:51:18 +00:00
11 lines
354 B
SQL
11 lines
354 B
SQL
ALTER TABLE person
|
|
DROP CONSTRAINT person_inbox_id_fkey;
|
|
|
|
ALTER TABLE person
|
|
DROP COLUMN inbox_url;
|
|
|
|
DROP TABLE inbox;
|
|
|
|
ALTER TABLE person add COLUMN inbox_url character varying(255) not null default generate_unique_changeme();
|
|
ALTER TABLE person add COLUMN shared_inbox_url character varying(255) not null default generate_unique_changeme();
|
|
|