Skip to content
Snippets Groups Projects
Commit 61b1ef39 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

maintenance: Fix stats table name

parent 9df9f7c8
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ qq{delete from users where status = 0 and registered_at < to_timestamp(?);}
my $drop_tokens_query
= $dbh->prepare(qq{delete from tokens where user_id = ?;});
my $drop_stats_query
= $dbh->prepare(qq{delete from monthly_stats where user_id = ?;});
= $dbh->prepare(qq{delete from journey_stats where user_id = ?;});
my $drop_actions_query
= $dbh->prepare(qq{delete from user_actions where user_id = ?;});
my $drop_user_query = $dbh->prepare(qq{delete from users where id = ?;});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment