mirror of
https://github.com/renee-png/acmcc.git
synced 2026-06-21 01:40:01 +00:00
183fe0a93c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
51 lines
1.8 KiB
SQL
51 lines
1.8 KiB
SQL
-- Time tracking entries
|
|
CREATE TABLE public.time_entries (
|
|
id UUID NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY,
|
|
user_id UUID NOT NULL,
|
|
association_id UUID REFERENCES public.associations(id) ON DELETE SET NULL,
|
|
description TEXT,
|
|
start_time TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
end_time TIMESTAMPTZ,
|
|
duration_seconds INTEGER,
|
|
is_running BOOLEAN NOT NULL DEFAULT false,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
|
|
ALTER TABLE public.time_entries ENABLE ROW LEVEL SECURITY;
|
|
|
|
CREATE POLICY "Admins and managers can view all time entries"
|
|
ON public.time_entries FOR SELECT
|
|
USING (public.has_role(auth.uid(), 'admin') OR public.has_role(auth.uid(), 'manager'));
|
|
|
|
CREATE POLICY "Users can view their own time entries"
|
|
ON public.time_entries FOR SELECT
|
|
USING (auth.uid() = user_id);
|
|
|
|
CREATE POLICY "Users can create their own time entries"
|
|
ON public.time_entries FOR INSERT
|
|
WITH CHECK (auth.uid() = user_id);
|
|
|
|
CREATE POLICY "Users can update their own time entries"
|
|
ON public.time_entries FOR UPDATE
|
|
USING (auth.uid() = user_id);
|
|
|
|
CREATE POLICY "Admins can update any time entry"
|
|
ON public.time_entries FOR UPDATE
|
|
USING (public.has_role(auth.uid(), 'admin'));
|
|
|
|
CREATE POLICY "Users can delete their own time entries"
|
|
ON public.time_entries FOR DELETE
|
|
USING (auth.uid() = user_id);
|
|
|
|
CREATE POLICY "Admins can delete any time entry"
|
|
ON public.time_entries FOR DELETE
|
|
USING (public.has_role(auth.uid(), 'admin'));
|
|
|
|
CREATE TRIGGER update_time_entries_updated_at
|
|
BEFORE UPDATE ON public.time_entries
|
|
FOR EACH ROW EXECUTE FUNCTION public.update_updated_at_column();
|
|
|
|
CREATE INDEX idx_time_entries_user_id ON public.time_entries(user_id);
|
|
CREATE INDEX idx_time_entries_association_id ON public.time_entries(association_id);
|
|
CREATE INDEX idx_time_entries_start_time ON public.time_entries(start_time DESC); |