Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

test change that should have no impact #7

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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/orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ WITH generated_orders AS (
{% if order_number is divisibleby 13 %}
'PENDING' AS status,
{% else %}
'DELIVERED' AS status,
'DELIVERED' AS status,
{% endif %}
DATEADD(Day, -1 * {{ day_ago }}, CURRENT_DATE) AS created_at,
current_timestamp AS changed_at
Expand Down