diff options
-rw-r--r-- | supabase/migrations/20240818192021_create_restored_file_table.sql | 2 |
1 files changed, 1 insertions, 1 deletions
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; |