forked from runtipi/runtipi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(e2e): fix wrong usage of store id instead of slug
- Loading branch information
Showing
4 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
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
10 changes: 8 additions & 2 deletions
10
packages/backend/src/core/database/drizzle/0015_unusual_newton_destine.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 |
---|---|---|
@@ -1,2 +1,8 @@ | ||
ALTER TABLE "app_store" ALTER COLUMN "name" SET DATA TYPE varchar(16);--> statement-breakpoint | ||
ALTER TABLE "app_store" DROP COLUMN "deleted"; | ||
ALTER TABLE "app_store" | ||
ALTER COLUMN "name" | ||
SET | ||
DATA TYPE varchar(16); | ||
|
||
--> statement-breakpoint | ||
ALTER TABLE "app_store" | ||
DROP COLUMN IF EXISTS "deleted"; |
4 changes: 3 additions & 1 deletion
4
packages/backend/src/core/database/drizzle/0016_cloudy_norman_osborn.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 |
---|---|---|
@@ -1 +1,3 @@ | ||
ALTER TABLE "app" ADD COLUMN "port" integer; | ||
ALTER TABLE "app" | ||
ADD COLUMN IF NOT EXISTS "port" integer; | ||
|