Skip to content

Commit 17dcbc9

Browse files
authored
Merge pull request #16 from DataRecce/chore/fix-the-clv-column-type
Fix CLV column type to bigint
2 parents 7a62abd + d603f1a commit 17dcbc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/customers.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ customer_payments as (
3434

3535
select
3636
orders.customer_id,
37-
sum(amount) as total_amount
37+
sum(amount)::bigint as total_amount
3838

3939
from payments
4040

0 commit comments

Comments
 (0)