Skip to content
Open
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
11 changes: 11 additions & 0 deletions .claude/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "code",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["--filter", "code", "dev"],
"port": 5173
}
]
}
1 change: 1 addition & 0 deletions .claude/worktrees/gifted-haibt
Submodule gifted-haibt added at 53ed7f
32 changes: 32 additions & 0 deletions apps/code/src/main/db/migrations/0003_bumpy_morgan_stark.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
CREATE TABLE `automation_runs` (
`id` text PRIMARY KEY NOT NULL,
`automation_id` text NOT NULL,
`status` text NOT NULL,
`output` text,
`error` text,
`started_at` text NOT NULL,
`completed_at` text,
`created_at` text DEFAULT (CURRENT_TIMESTAMP) NOT NULL,
FOREIGN KEY (`automation_id`) REFERENCES `automations`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE INDEX `automation_runs_automation_id_idx` ON `automation_runs` (`automation_id`);--> statement-breakpoint
CREATE TABLE `automations` (
`id` text PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`prompt` text NOT NULL,
`repo_path` text NOT NULL,
`repository` text,
`github_integration_id` integer,
`schedule_time` text NOT NULL,
`timezone` text NOT NULL,
`enabled` integer DEFAULT true NOT NULL,
`template_id` text,
`last_run_at` text,
`last_run_status` text,
`last_task_id` text,
`last_error` text,
`next_run_at` text,
`created_at` text DEFAULT (CURRENT_TIMESTAMP) NOT NULL,
`updated_at` text DEFAULT (CURRENT_TIMESTAMP) NOT NULL
);
Loading