1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

13.0.6 sql (#7982)

This commit is contained in:
欢乐马
2025-06-26 18:17:33 +08:00
committed by GitHub
parent cdb712dcd4
commit a30962d3b6

View File

@@ -69,6 +69,36 @@ CREATE TABLE IF NOT EXISTS `notifications_sysusernotification` (
KEY `notifications_sysusernotification_created_at_56ffd2a0` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
CREATE TABLE IF NOT EXISTS `stats_ai_by_team` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`org_id` bigint(20) NOT NULL,
`month` date NOT NULL,
`model` varchar(100) NOT NULL,
`input_tokens` int(11) DEFAULT NULL,
`output_tokens` int(11) DEFAULT NULL,
`cost` double NOT NULL,
`created_at` datetime(6) DEFAULT NULL,
`updated_at` datetime(6) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `stats_ai_by_team_org_id_month_model` (`org_id`,`month`,`model`),
KEY `ix_stats_ai_by_team_org_id_month` (`org_id`,`month`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
CREATE TABLE IF NOT EXISTS `stats_ai_by_owner` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(255) NOT NULL,
`month` date NOT NULL,
`model` varchar(100) NOT NULL,
`input_tokens` int(11) DEFAULT NULL,
`output_tokens` int(11) DEFAULT NULL,
`cost` double NOT NULL,
`created_at` datetime(6) DEFAULT NULL,
`updated_at` datetime(6) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `stats_ai_by_owner_username_month_model` (`username`,`month`,`model`),
KEY `ix_stats_ai_by_owner_username_month` (`username`,`month`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
ALTER TABLE `sdoc_notification` ADD INDEX `idx_user_seen` (`username`, `seen`);
ALTER TABLE organizations_orgsettings ADD COLUMN `is_active` tinyint(1) NOT NULL DEFAULT 1;