Skip to content

Commit

Permalink
Snowflake web: Remove start_date variable from users module (Close #123)
Browse files Browse the repository at this point in the history
  • Loading branch information
agnessnowplow committed Feb 18, 2022
1 parent dd0b336 commit 01b138f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
:scratch_schema: scratch
:output_schema: derived
:entropy: ""
:start_date: 2020-01-01
:skip_derived:
:steps:
- :name: 01-stored-procedures
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ CREATE TABLE IF NOT EXISTS {{.output_schema}}.users_manifest{{.entropy}}
AS (
SELECT
'seed'::VARCHAR(36) AS domain_userid,
'{{.start_date}}'::TIMESTAMP_NTZ AS start_tstamp
'1970-01-01'::TIMESTAMP_NTZ AS start_tstamp
);

-- Setup Users table
Expand Down

0 comments on commit 01b138f

Please sign in to comment.