From 7cd3004640bac9cbf291b9075f99405b7d8c3c64 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Mon, 19 Aug 2024 00:20:36 +0200 Subject: Supabase: Migrations: Fix schema of restored files table --- supabase/migrations/20240818192021_create_restored_file_table.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/migrations/20240818192021_create_restored_file_table.sql b/supabase/migrations/20240818192021_create_restored_file_table.sql index 5654b33..634c8f0 100644 --- a/supabase/migrations/20240818192021_create_restored_file_table.sql +++ b/supabase/migrations/20240818192021_create_restored_file_table.sql @@ -3,7 +3,7 @@ CREATE TABLE IF NOT EXISTS public."restored_file" ( user_id UUID NOT NULL, absolute_path VARCHAR(4096) NOT NULL, contents TEXT, - original_timestamp TIMESTAMPTZ NOT NULL + timestamp TIMESTAMPTZ NOT NULL ); ALTER TABLE public."restored_file" ENABLE ROW LEVEL SECURITY; -- cgit 1.4.1