feat(den-web): rename den service and ship new 3-step cloud setup UX

This commit is contained in:
Benjamin Shafii
2026-02-21 16:47:59 -08:00
parent b8bec6e902
commit c3494135ff
30 changed files with 947 additions and 663 deletions

View File

@@ -0,0 +1,65 @@
DROP TABLE IF EXISTS `account`;
--> statement-breakpoint
DROP TABLE IF EXISTS `session`;
--> statement-breakpoint
DROP TABLE IF EXISTS `verification`;
--> statement-breakpoint
DROP TABLE IF EXISTS `user`;
--> statement-breakpoint
CREATE TABLE `user` (
`id` varchar(36) NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`email_verified` boolean NOT NULL DEFAULT false,
`image` text,
`created_at` timestamp(3) NOT NULL DEFAULT (now()),
`updated_at` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
CONSTRAINT `user_id` PRIMARY KEY(`id`),
CONSTRAINT `user_email` UNIQUE(`email`)
);
--> statement-breakpoint
CREATE TABLE `session` (
`id` varchar(36) NOT NULL,
`expires_at` timestamp(3) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` timestamp(3) NOT NULL DEFAULT (now()),
`updated_at` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
`ip_address` text,
`user_agent` text,
`user_id` varchar(36) NOT NULL,
CONSTRAINT `session_id` PRIMARY KEY(`id`),
CONSTRAINT `session_token` UNIQUE(`token`)
);
--> statement-breakpoint
CREATE INDEX `session_user_id` ON `session` (`user_id`);
--> statement-breakpoint
CREATE TABLE `account` (
`id` varchar(36) NOT NULL,
`account_id` text NOT NULL,
`provider_id` text NOT NULL,
`user_id` varchar(36) NOT NULL,
`access_token` text,
`refresh_token` text,
`id_token` text,
`access_token_expires_at` timestamp(3),
`refresh_token_expires_at` timestamp(3),
`scope` text,
`password` text,
`created_at` timestamp(3) NOT NULL DEFAULT (now()),
`updated_at` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
CONSTRAINT `account_id` PRIMARY KEY(`id`)
);
--> statement-breakpoint
CREATE INDEX `account_user_id` ON `account` (`user_id`);
--> statement-breakpoint
CREATE TABLE `verification` (
`id` varchar(36) NOT NULL,
`identifier` varchar(255) NOT NULL,
`value` text NOT NULL,
`expires_at` timestamp(3) NOT NULL,
`created_at` timestamp(3) NOT NULL DEFAULT (now()),
`updated_at` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
CONSTRAINT `verification_id` PRIMARY KEY(`id`)
);
--> statement-breakpoint
CREATE INDEX `verification_identifier` ON `verification` (`identifier`);