]> Untitled Git - lemmy.git/blob - migrations/2021-02-28-162616_clean_empty_post_urls/up.sql
Speedup CI (#3852)
[lemmy.git] / migrations / 2021-02-28-162616_clean_empty_post_urls / up.sql
1 UPDATE
2     post
3 SET
4     url = NULL
5 WHERE
6     url = '';
7