Skip to content

Commit 964601e

Browse files
committed
feat(db): add milestone, sync timestamps, and toggle columns
1 parent 80cb4d4 commit 964601e

5 files changed

Lines changed: 2183 additions & 1 deletion

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
ALTER TABLE "reports" ADD COLUMN "milestone_number" integer;--> statement-breakpoint
2+
ALTER TABLE "reports" ADD COLUMN "milestone_title" text;--> statement-breakpoint
3+
ALTER TABLE "reports" ADD COLUMN "github_synced_at" timestamp with time zone;--> statement-breakpoint
4+
ALTER TABLE "reports" ADD COLUMN "github_comments_synced_at" timestamp with time zone;--> statement-breakpoint
5+
ALTER TABLE "github_integrations" ADD COLUMN "auto_create_on_intake" boolean DEFAULT false NOT NULL;--> statement-breakpoint
6+
ALTER TABLE "github_integrations" ADD COLUMN "push_on_edit" boolean DEFAULT false NOT NULL;--> statement-breakpoint
7+
ALTER TABLE "github_integrations" ADD COLUMN "labels_last_synced_at" timestamp with time zone;--> statement-breakpoint
8+
ALTER TABLE "github_integrations" ADD COLUMN "milestones_last_synced_at" timestamp with time zone;--> statement-breakpoint
9+
ALTER TABLE "github_integrations" ADD COLUMN "members_last_synced_at" timestamp with time zone;

0 commit comments

Comments
 (0)