Skip to content

Commit

Permalink
Update src/db/tables/subscriber_churns.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Vincent <[email protected]>
  • Loading branch information
mansaj and Vinnl authored Jan 21, 2025
1 parent 3bac917 commit 9c52c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db/tables/subscriber_churns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function upsertSubscriberChurns(

async function getAllSubscriberChurns(): Promise<SubscriberChurnRow[]> {
try {
const res = await knex("subscriber_churns").select().returning("*");
const res = await knex("subscriber_churns").select("*");

logger.info("get_all_subscriber_churns_success", { count: res.length });
return res as SubscriberChurnRow[];
Expand Down

0 comments on commit 9c52c2c

Please sign in to comment.