- configure wrangler for CF account with D1 binding - add feedback API route with rate limiting and github issue creation - add feedback widget component - add project detail page with status/schedule/info tabs - add frappe-gantt type declarations - fix type errors for production build - add migration 0004 for feedback table
15 lines
304 B
SQL
Executable File
15 lines
304 B
SQL
Executable File
CREATE TABLE `feedback` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`type` text NOT NULL,
|
|
`message` text NOT NULL,
|
|
`name` text,
|
|
`email` text,
|
|
`page_url` text,
|
|
`user_agent` text,
|
|
`viewport_width` integer,
|
|
`viewport_height` integer,
|
|
`ip_hash` text,
|
|
`github_issue_url` text,
|
|
`created_at` text NOT NULL
|
|
);
|