You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user_id: number nullable: false, -- Referencia al usuario que dio el like
like_id:
comment_id: number nullable: true, -- Referencia al comentario que recibió el like (puede ser NULL)
response_id: number nullable: true, -- Referencia a la respuesta que recibió el like (puede ser NULL)
created_at: datetime - nullable: false default: CURRENT_TIMESTAMP , -- Fecha de creación
PostReactions
id: uuid,
post_id: Post // Relaciona con la entidad Post,
pet_id: Pet // Relacionado con la entidad Pet,
reaction: enum[ happy, love, hungry, sad, like ] nullable: false,
created_at: date default: CURRENT_TIMESTAMP,
updated_at: date,
The text was updated successfully, but these errors were encountered:
Reaction
CommentReactions
PostReactions
id: uuid,
post_id: Post // Relaciona con la entidad Post,
pet_id: Pet // Relacionado con la entidad Pet,
reaction: enum[ happy, love, hungry, sad, like ] nullable: false,
created_at: date default: CURRENT_TIMESTAMP,
updated_at: date,
The text was updated successfully, but these errors were encountered: