mirror of https://github.com/LemmyNet/lemmy.git
30 lines
355 B
SQL
30 lines
355 B
SQL
-- If these are not urls, it will crash the server
|
|
UPDATE
|
|
user_
|
|
SET
|
|
avatar = NULL
|
|
WHERE
|
|
avatar NOT LIKE 'http%';
|
|
|
|
UPDATE
|
|
user_
|
|
SET
|
|
banner = NULL
|
|
WHERE
|
|
banner NOT LIKE 'http%';
|
|
|
|
UPDATE
|
|
community
|
|
SET
|
|
icon = NULL
|
|
WHERE
|
|
icon NOT LIKE 'http%';
|
|
|
|
UPDATE
|
|
community
|
|
SET
|
|
banner = NULL
|
|
WHERE
|
|
banner NOT LIKE 'http%';
|
|
|