diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-01-03 23:31:45 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-01-03 23:31:45 +0100 |
commit | f497d0ed18106b5a841ca5b98ebc01fb428ce0ef (patch) | |
tree | 50a23be9f7b6957a12852893cb4acedbde48545d | |
parent | 0787aec18d9b879791c5d6f9d75209d242aba708 (diff) | |
download | ts3db_postgres-f497d0ed18106b5a841ca5b98ebc01fb428ce0ef.tar.gz ts3db_postgres-f497d0ed18106b5a841ca5b98ebc01fb428ce0ef.tar.xz ts3db_postgres-f497d0ed18106b5a841ca5b98ebc01fb428ce0ef.zip |
fixed bug with invalid parameter while executing monthly cleanup
-rw-r--r-- | sql/client_clear_traffic_stats.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/client_clear_traffic_stats.sql b/sql/client_clear_traffic_stats.sql index f73e731..68158c9 100644 --- a/sql/client_clear_traffic_stats.sql +++ b/sql/client_clear_traffic_stats.sql @@ -1 +1 @@ -update clients set client_month_upload= 0, client_month_download= 0 where server_id=:server_id:;
\ No newline at end of file +update clients set client_month_upload= 0, client_month_download= 0; |