sql fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
set statement_timeout = 0;
|
||||
delete from posts where id < 1140000;
|
||||
delete from post_appeals where post_id < 1140000;
|
||||
delete from posts where id < (select max(id) - 50000 from posts);
|
||||
delete from post_appeals where post_id < (select max(id) - 50000 from posts);
|
||||
vacuum analyze;
|
||||
|
||||
Reference in New Issue
Block a user