mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-27 06:41:18 +00:00
12 lines
354 B
MySQL
12 lines
354 B
MySQL
|
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();
|
||
|
|