crt_lora_style.sql 879 B

12345678910111213141516171819
  1. /**
  2. Source Server Version: 8.0.31
  3. Source Database: backendsys
  4. Date: 2025/06/03 10:09:22
  5. */
  6. DROP TABLE IF EXISTS `crt_lora_style`;
  7. CREATE TABLE `crt_lora_style` (
  8. PRIMARY KEY (`id`),
  9. `id` BIGINT NOT NULL AUTO_INCREMENT COMMENT 'ID',
  10. `name` VARCHAR(50) NOT NULL COMMENT '风格名称',
  11. `lora_style_name` VARCHAR(255) NOT NULL COMMENT '风格LoRA名称',
  12. `lora_style_path` VARCHAR(500) NOT NULL COMMENT '风格LoRA路径'
  13. ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='短剧创作-风格LoRA表';
  14. INSERT INTO crt_lora_style(id, name, lora_style_name, lora_style_path) VALUES
  15. (1, 'Hyatsu梦幻宝石眼睛v2', 'hyatsu_gemstone_dream_eyes_v2', '/etc/ComfyUI/custom_nodes/xxx/hyatsu_gemstone_dream_eyes_v2.safetensors'),
  16. (2, '日系漫画风', 'japanese_anime_style', '/etc/ComfyUI/custom_nodes/xxx/japanese_anime_style.safetensors')
  17. ;