From ca6341372dfbe5011dcd5ec37818ee674ee9f028 Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Thu, 6 Jun 2024 19:11:10 +0200 Subject: [PATCH] chore: Set default value for "last_synced" column in "syncs_active" table to '2024-06-01 15:30:25+00' (#2638) # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate): --- backend/supabase/migrations/20240606170930_sync-reduce-time.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 backend/supabase/migrations/20240606170930_sync-reduce-time.sql diff --git a/backend/supabase/migrations/20240606170930_sync-reduce-time.sql b/backend/supabase/migrations/20240606170930_sync-reduce-time.sql new file mode 100644 index 000000000..8451be50d --- /dev/null +++ b/backend/supabase/migrations/20240606170930_sync-reduce-time.sql @@ -0,0 +1 @@ +alter table "public"."syncs_active" alter column "last_synced" set default '2024-06-01 15:30:25+00'::timestamp with time zone;