19 lines
551 B
SQL
19 lines
551 B
SQL
CREATE TABLE `service_ai_feedback`
|
|
(
|
|
`id` bigint NOT NULL,
|
|
`created_time` datetime(6) DEFAULT NULL,
|
|
`modified_time` datetime(6) DEFAULT NULL,
|
|
`analysis` longtext,
|
|
`conclusion` longtext,
|
|
`source` longtext NOT NULL,
|
|
`status` tinyint NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) DEFAULT CHARSET = utf8mb4;
|
|
|
|
CREATE TABLE `service_ai_feedback_pictures`
|
|
(
|
|
`feedback_id` bigint NOT NULL,
|
|
`pictures_id` bigint NOT NULL,
|
|
PRIMARY KEY (`feedback_id`, `pictures_id`)
|
|
) DEFAULT CHARSET = utf8mb4;
|