dify-proxy-backend/src/main/resources/persistent_logins.sql
zhuangtianxiang aeaaf046d6 feat(dify): 添加 Dify应用服务模块
- 新增 DifyServeService 服务类,实现应用列表获取和持久化- 添加 DifyServeMapper 和 DifyServeRepository 接口
- 创建 AppsResponse 实体类,用于存储应用响应数据
- 新增 V1ServeController 控制器,提供应用列表接口
- 在 application-dev.yml 中添加 Dify 服务器配置信息
- 移除不必要的 SseController 和 WebConfig 类
2025-04-24 01:30:22 +08:00

13 lines
251 B
SQL

create table persistent_logins
(
username varchar(64) not null,
series varchar(64) not null
primary key,
token varchar(64) not null,
last_used timestamp not null
);
alter table persistent_logins
owner to gitea;