mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
e36ad9d984
* Removing the site creator, adding leave_admin. Fixes #1808 * Making sure there's at least one admin. Fixing unit tests
14 lines
351 B
SQL
14 lines
351 B
SQL
-- Add the column back
|
|
alter table site add column creator_id int references person on update cascade on delete cascade;
|
|
|
|
-- Add the data, selecting the highest admin
|
|
update site
|
|
set creator_id = sub.id
|
|
from (
|
|
select id from person
|
|
where admin = true
|
|
limit 1
|
|
) as sub;
|
|
|
|
-- Set to not null
|
|
alter table site alter column creator_id set not null;
|