Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"image": "mcr.microsoft.com/devcontainers/typescript-node",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/itsmechlark/features/postgresql:1": {}
"ghcr.io/itsmechlark/features/postgresql:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
Expand Down
6 changes: 6 additions & 0 deletions drizzle/0020_ambitious_sugar_man.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ALTER TABLE "market_item_order" ALTER COLUMN "status" SET DATA TYPE text;--> statement-breakpoint
ALTER TABLE "market_item_order" ALTER COLUMN "status" SET DEFAULT 'awaiting_approval'::text;--> statement-breakpoint
DROP TYPE "public"."market_order_status";--> statement-breakpoint
CREATE TYPE "public"."market_order_status" AS ENUM('awaiting_approval', 'fulfilled', 'denied', 'refunded');--> statement-breakpoint
ALTER TABLE "market_item_order" ALTER COLUMN "status" SET DEFAULT 'awaiting_approval'::"public"."market_order_status";--> statement-breakpoint
ALTER TABLE "market_item_order" ALTER COLUMN "status" SET DATA TYPE "public"."market_order_status" USING "status"::"public"."market_order_status";
2 changes: 2 additions & 0 deletions drizzle/0021_perfect_meteorite.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE "t2_review" ADD COLUMN "shopScoreMultiplier" real DEFAULT 25 NOT NULL;--> statement-breakpoint
ALTER TABLE "t2_review" DROP COLUMN "currencyMultiplier";
Loading
Loading