Spaces:
Build error
Build error
| CREATE TABLE `conversations` ( | |
| `id` int AUTO_INCREMENT NOT NULL, | |
| `userId` int NOT NULL, | |
| `title` text, | |
| `mode` enum('ask','imagine') NOT NULL DEFAULT 'ask', | |
| `createdAt` timestamp NOT NULL DEFAULT (now()), | |
| `updatedAt` timestamp NOT NULL DEFAULT (now()) ON UPDATE CURRENT_TIMESTAMP, | |
| CONSTRAINT `conversations_id` PRIMARY KEY(`id`) | |
| ); | |
| --> statement-breakpoint | |
| CREATE TABLE `feedback` ( | |
| `id` int AUTO_INCREMENT NOT NULL, | |
| `userId` int NOT NULL, | |
| `messageId` int, | |
| `imageId` int, | |
| `rating` enum('like','dislike') NOT NULL, | |
| `comment` text, | |
| `createdAt` timestamp NOT NULL DEFAULT (now()), | |
| CONSTRAINT `feedback_id` PRIMARY KEY(`id`) | |
| ); | |
| --> statement-breakpoint | |
| CREATE TABLE `images` ( | |
| `id` int AUTO_INCREMENT NOT NULL, | |
| `userId` int NOT NULL, | |
| `conversationId` int, | |
| `prompt` text NOT NULL, | |
| `url` text NOT NULL, | |
| `metadata` json, | |
| `createdAt` timestamp NOT NULL DEFAULT (now()), | |
| CONSTRAINT `images_id` PRIMARY KEY(`id`) | |
| ); | |
| --> statement-breakpoint | |
| CREATE TABLE `messages` ( | |
| `id` int AUTO_INCREMENT NOT NULL, | |
| `conversationId` int NOT NULL, | |
| `role` enum('user','assistant') NOT NULL, | |
| `content` longtext NOT NULL, | |
| `reasoning` text, | |
| `metadata` json, | |
| `createdAt` timestamp NOT NULL DEFAULT (now()), | |
| CONSTRAINT `messages_id` PRIMARY KEY(`id`) | |
| ); | |
| --> statement-breakpoint | |
| ALTER TABLE `users` ADD `tier` varchar(50) DEFAULT 'free' NOT NULL;--> statement-breakpoint | |
| ALTER TABLE `users` ADD `ipAddress` varchar(45); |