37 lines
1.1 KiB
SQL
37 lines
1.1 KiB
SQL
INSERT INTO storage.buckets (id, name, public)
|
|
VALUES ('files_bucket', 'files_bucket', true);
|
|
|
|
CREATE POLICY "Whack"
|
|
ON storage.objects
|
|
FOR ALL
|
|
USING (bucket_id = 'files_bucket');
|
|
|
|
CREATE TABLE study_spaces (
|
|
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
description text,
|
|
-- Location within building, e.g., "Room 101"
|
|
location text,
|
|
building_location text,
|
|
tags text[] NOT NULL DEFAULT array[]::text[],
|
|
created_at timestamp with time zone DEFAULT now(),
|
|
updated_at timestamp with time zone DEFAULT now()
|
|
);
|
|
|
|
CREATE TABLE study_space_images (
|
|
study_space_id uuid REFERENCES study_spaces(id) ON DELETE CASCADE,
|
|
image_path text NOT NULL,
|
|
created_at timestamp with time zone DEFAULT now(),
|
|
updated_at timestamp with time zone DEFAULT now(),
|
|
PRIMARY KEY (study_space_id, image_path)
|
|
);
|
|
|
|
|
|
-- Triggers
|
|
CREATE TRIGGER study_spaces_updated_at
|
|
AFTER UPDATE ON study_spaces
|
|
FOR EACH ROW EXECUTE FUNCTION handle_updated_at();
|
|
|
|
CREATE TRIGGER study_space_images_updated_at
|
|
AFTER UPDATE ON study_space_images
|
|
FOR EACH ROW EXECUTE FUNCTION handle_updated_at();
|