Skip to content

Commit d603f1a

Browse files
committed
Fix CLV column type to bigint
Signed-off-by: popcorny <[email protected]>
1 parent 9250ad7 commit d603f1a

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)