mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 12:59:39 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
63 lines
No EOL
2.1 KiB
PL/PgSQL
63 lines
No EOL
2.1 KiB
PL/PgSQL
-- Create character_votes table
|
|
CREATE TABLE IF NOT EXISTS character_votes (
|
|
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
|
|
character_id UUID NOT NULL,
|
|
user_id UUID NOT NULL,
|
|
vote_type VARCHAR(10) NOT NULL CHECK (vote_type IN ('like', 'love', 'star')),
|
|
created_at TIMESTAMP WITH TIME ZONE DEFAULT TIMEZONE('utc'::text, NOW()) NOT NULL,
|
|
updated_at TIMESTAMP WITH TIME ZONE DEFAULT TIMEZONE('utc'::text, NOW()) NOT NULL,
|
|
|
|
-- Ensure one vote per user per character
|
|
UNIQUE(character_id, user_id),
|
|
|
|
-- Foreign key to characters table (assuming it exists)
|
|
CONSTRAINT fk_character
|
|
FOREIGN KEY(character_id)
|
|
REFERENCES characters(id)
|
|
ON DELETE CASCADE
|
|
);
|
|
|
|
-- Create indexes for performance
|
|
CREATE INDEX idx_character_votes_character_id ON character_votes(character_id);
|
|
CREATE INDEX idx_character_votes_user_id ON character_votes(user_id);
|
|
CREATE INDEX idx_character_votes_vote_type ON character_votes(vote_type);
|
|
|
|
-- Enable Row Level Security
|
|
ALTER TABLE character_votes ENABLE ROW LEVEL SECURITY;
|
|
|
|
-- Create RLS policies
|
|
-- Policy: Users can view all votes (for counting)
|
|
CREATE POLICY "Allow viewing all votes" ON character_votes
|
|
FOR SELECT
|
|
USING (true);
|
|
|
|
-- Policy: Users can insert their own votes
|
|
CREATE POLICY "Users can create their own votes" ON character_votes
|
|
FOR INSERT
|
|
WITH CHECK (auth.uid() = user_id);
|
|
|
|
-- Policy: Users can update their own votes
|
|
CREATE POLICY "Users can update their own votes" ON character_votes
|
|
FOR UPDATE
|
|
USING (auth.uid() = user_id)
|
|
WITH CHECK (auth.uid() = user_id);
|
|
|
|
-- Policy: Users can delete their own votes
|
|
CREATE POLICY "Users can delete their own votes" ON character_votes
|
|
FOR DELETE
|
|
USING (auth.uid() = user_id);
|
|
|
|
-- Create function to update updated_at timestamp
|
|
CREATE OR REPLACE FUNCTION update_updated_at_column()
|
|
RETURNS TRIGGER AS $$
|
|
BEGIN
|
|
NEW.updated_at = TIMEZONE('utc'::text, NOW());
|
|
RETURN NEW;
|
|
END;
|
|
$$ language 'plpgsql';
|
|
|
|
-- Create trigger to auto-update updated_at
|
|
CREATE TRIGGER update_character_votes_updated_at BEFORE UPDATE
|
|
ON character_votes
|
|
FOR EACH ROW
|
|
EXECUTE FUNCTION update_updated_at_column(); |