-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add capacity and sheltered pets (#126)
add fields in shelter table: pets capacity and sheltered pets Task: https://sosriograndedosul.notion.site/Quando-o-abrigo-aceita-pets-habilitar-quantidade-de-vagas-e-capacidade-para-pets-414804de03f541d795e34baff7ee2371 Frontend PR is here: [https://github.com/SOS-RS/frontend/pull/206](https://github.com/SOS-RS/frontend/pull/206) --------- Co-authored-by: Everton Pavan <everton.pavan.dev@gmail.com>
- Loading branch information
1 parent
f819495
commit c48898e
Showing
4 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
prisma/migrations/20240516140110_add_capacity_and_shelter_pets/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- AlterTable | ||
ALTER TABLE "shelters" ADD COLUMN "pets_capacity" INTEGER, | ||
ADD COLUMN "sheltered_pets" INTEGER; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters