-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add lighthouse score in database fields
- Loading branch information
1 parent
9cf46e6
commit 6c2a093
Showing
4 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
src/server/prisma/migrations/20240930172940_add_lighthouse_score/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,5 @@ | ||
-- AlterTable | ||
ALTER TABLE "WebsiteLighthouseReport" ADD COLUMN "accessibilityScore" INTEGER NOT NULL DEFAULT 0, | ||
ADD COLUMN "bestPracticesScore" INTEGER NOT NULL DEFAULT 0, | ||
ADD COLUMN "performanceScore" INTEGER NOT NULL DEFAULT 0, | ||
ADD COLUMN "seoScore" INTEGER NOT NULL DEFAULT 0; |
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