style tweaks

This commit is contained in:
albert
2012-04-20 18:01:09 -04:00
parent fcae4bc82e
commit ec97b6aaf9
5 changed files with 22 additions and 3 deletions

11
script/trim.sql Normal file
View File

@@ -0,0 +1,11 @@
set statement_timeout = 0;
delete from posts where id < 1000000;
delete from comments where post_id < 1000000;
delete from favorites where post_id < 1000000;
delete from flagged_post_details where post_id < 1000000;
delete from note_versions where post_id < 1000000;
delete from notes where post_id < 1000000;
delete from pools_posts where post_id < 1000000;
delete from post_appeals where post_id < 1000000;
delete from post_tag_histories where post_id < 1000000;
delete from post_votes where post_id < 1000000;