From e9afc81bab7e3e93acf88513abd7d15376834b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Mon, 20 May 2024 11:52:27 +0200 Subject: [PATCH] chore: update seed data to change habits start dates --- infrastructure/supabase/seed.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/infrastructure/supabase/seed.sql b/infrastructure/supabase/seed.sql index d6193fa..79890c2 100644 --- a/infrastructure/supabase/seed.sql +++ b/infrastructure/supabase/seed.sql @@ -117,7 +117,7 @@ VALUES 'Wake up at 07h00', '#006CFF', 'bed', - timezone('utc' :: text, NOW()), + timezone('utc' :: text, NOW() - INTERVAL '3 days'), NULL, 'daily', NULL, @@ -144,7 +144,7 @@ VALUES 'Learn English', '#EB4034', 'language', - timezone('utc' :: text, NOW()), + timezone('utc' :: text, NOW() - INTERVAL '3 days'), NULL, 'daily', 30, @@ -171,7 +171,7 @@ VALUES 'Walk', '#228B22', 'person-walking', - timezone('utc' :: text, NOW()), + timezone('utc' :: text, NOW() - INTERVAL '3 days'), NULL, 'daily', 5000, @@ -198,7 +198,7 @@ VALUES 'Clean the house', '#808080', 'broom', - timezone('utc' :: text, NOW()), + timezone('utc' :: text, NOW() - INTERVAL '3 days'), NULL, 'weekly', NULL, @@ -225,7 +225,7 @@ VALUES 'Solve Programming Challenges', '#DE3163', 'code', - timezone('utc' :: text, NOW()), + timezone('utc' :: text, NOW() - INTERVAL '3 days'), NULL, 'monthly', 5,