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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
.vscode
logfile
.turbo
node_modules
node_modules
# Cursor symlinked files
.cursor/rules/*-local.mdc
.cursor/commands/*-local.*
1,128 changes: 189 additions & 939 deletions hono/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hono/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.4",
"drizzle-kit": "^0.19.1",
"drizzle-kit": "^0.31.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
Expand Down
6 changes: 6 additions & 0 deletions hono/src/drizzle/0007_concerned_nitro.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CREATE TYPE "public"."itemStatus" AS ENUM('available', 'withheld', 'retired');--> statement-breakpoint
ALTER TABLE "items" ADD COLUMN "status" "itemStatus" DEFAULT 'available' NOT NULL;--> statement-breakpoint
UPDATE "items" SET "status" = 'withheld' WHERE "is_archived" = true;--> statement-breakpoint
ALTER TABLE "items" DROP COLUMN "is_archived";--> statement-breakpoint
ALTER TABLE "outfits" ADD COLUMN "location_latitude" DOUBLE PRECISION;--> statement-breakpoint
ALTER TABLE "outfits" ADD COLUMN "location_longitude" DOUBLE PRECISION;
Loading