feat: walking skeleton - study space uploads
This commit is contained in:
10
supabase/schemas/0000_common.sql
Normal file
10
supabase/schemas/0000_common.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE FUNCTION handle_updated_at()
|
||||
RETURNS trigger
|
||||
LANGUAGE plpgsql
|
||||
SET search_path = ''
|
||||
AS $$
|
||||
BEGIN
|
||||
NEW.updated_at = now();
|
||||
RETURN NEW;
|
||||
END;
|
||||
$$;
|
||||
Reference in New Issue
Block a user