Files
aiartstudio/prisma/migrations/20260425220000_add_lsky_hosting/migration.sql
T
2026-04-26 00:39:28 +08:00

5 lines
291 B
SQL

ALTER TABLE `image_generations`
DROP COLUMN `image_base64`,
ADD COLUMN `hosted_image_url` VARCHAR(2048) NULL COMMENT 'Lsky 图床归档后的图片 URL' AFTER `image_url`,
ADD COLUMN `hosted_response` JSON NULL COMMENT '完整 Lsky 图床上传接口响应' AFTER `upstream_response`;