forked from plainblack/Lacuna-Server-Open
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tidy database, remove unwanted rows and tables
- Loading branch information
1 parent
68d35ec
commit 678e4a4
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# tidy up of some unused tables | ||
|
||
drop table glyphs; | ||
drop table body_old; | ||
drop table propositions_bak; | ||
drop table temp; | ||
drop table trades; | ||
drop table votes_bak; | ||
delete from cargo_log; | ||
delete from login_log where date_stamp < "2015-01-01 00:00:00"; | ||
delete from lottery_log where date_stamp < "2015-01-01 00:00:00"; | ||
delete from news where date_posted < "2015-01-01 00:00:00"; | ||
|