Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion models/beers/order_lines.sql
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SELECT {{ date_format() }}(
) AS beer_id,
1 +MOD(ABS(HASH( order_number + line_no )), 3) AS quantity,
MOD(ABS(HASH( order_number + line_no )), 300) / 100 AS price,
DATEADD(Day, -1 * day_ago , current_timestamp) AS created_at,
convert_timezone('America/New_York', 'America/Los_Angeles', (DATEADD(Day, -1 * day_ago , current_timestamp))) AS created_at,
current_timestamp AS changed_at


Expand Down