wip
This commit is contained in:
parent
def7767b94
commit
8ad4302ec8
13 changed files with 3902 additions and 4 deletions
12
Femto.Database/Migrations/20250526220032_AddReactions.sql
Normal file
12
Femto.Database/Migrations/20250526220032_AddReactions.sql
Normal file
|
@ -0,0 +1,12 @@
|
|||
-- Migration: AddReactions
|
||||
-- Created at: 26/05/2025 22:00:32
|
||||
|
||||
ALTER TABLE blog.post
|
||||
ADD COLUMN possible_reactions TEXT;
|
||||
|
||||
CREATE TABLE blog.post_reaction
|
||||
(
|
||||
post_id uuid REFERENCES blog.post(id),
|
||||
author_id uuid REFERENCES blog.author(id),
|
||||
emoji text not null
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue