-
-
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.
- Loading branch information
1 parent
f78aa2c
commit d0610d3
Showing
11 changed files
with
1,781 additions
and
399 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"node": ">=20.16.0", | ||
"pnpm": "^9.6.0" | ||
}, | ||
"packageManager": "[email protected]+sha256.24235772cc4ac82a62627cd47f834c72667a2ce87799a846ec4e8e555e2d4b8b", | ||
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee", | ||
"scripts": { | ||
"build": "turbo run build", | ||
"clean": "git clean -xdf node_modules", | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ALTER TABLE "hyper_activity" RENAME COLUMN "updatedAt" TO "updated_at";--> statement-breakpoint | ||
ALTER TABLE "hyper_cgm_data" RENAME COLUMN "updatedAt" TO "updated_at";--> statement-breakpoint | ||
ALTER TABLE "hyper_daily_recap" RENAME COLUMN "updatedAt" TO "updated_at";--> statement-breakpoint | ||
ALTER TABLE "hyper_meal" RENAME COLUMN "updatedAt" TO "updated_at";--> statement-breakpoint | ||
ALTER TABLE "hyper_report" RENAME COLUMN "updatedAt" TO "updated_at";--> statement-breakpoint | ||
ALTER TABLE "hyper_cgm_data" DROP CONSTRAINT "hyper_cgm_data_record_id_unique";--> statement-breakpoint | ||
ALTER TABLE "hyper_daily_recap" DROP CONSTRAINT "hyper_daily_recap_date_profile_id_unique";--> statement-breakpoint | ||
ALTER TABLE "hyper_report" ADD COLUMN "report_type" varchar(50) NOT NULL;--> statement-breakpoint | ||
ALTER TABLE "hyper_report" ADD COLUMN "start_time" timestamp with time zone NOT NULL;--> statement-breakpoint | ||
ALTER TABLE "hyper_report" ADD COLUMN "end_time" timestamp with time zone NOT NULL;--> statement-breakpoint | ||
ALTER TABLE "hyper_report" ADD COLUMN "generated_at" timestamp with time zone NOT NULL;--> statement-breakpoint | ||
ALTER TABLE "hyper_report" DROP COLUMN IF EXISTS "title";--> statement-breakpoint | ||
ALTER TABLE "hyper_report" DROP COLUMN IF EXISTS "content";--> statement-breakpoint | ||
ALTER TABLE "hyper_cgm_data" ADD CONSTRAINT "hyper_cgm_data_recordId_unique" UNIQUE("record_id");--> statement-breakpoint | ||
ALTER TABLE "hyper_daily_recap" ADD CONSTRAINT "daily_recap_date_profile_unique" UNIQUE("date","profile_id"); |
Oops, something went wrong.