Files
dpb/backend/sql/weld_environment_condition.sql
T
34047007@qq.com b95053c52c init: 初始化 dpb 桃育种系统代码库
前后端 + 后端 FastAPI 全量源码、部署脚本与文档。
2026-08-06 00:17:49 +08:00

10 lines
650 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- ============================================================
-- P3.2: environment_condition 环境因子 —— 幂等确认脚本
-- ------------------------------------------------------------
-- bre_environment_condition 表 DDL 已正确(site×year 唯一),
-- 无需焊写。此处仅确保 FK 索引与唯一约束在位,重跑无害。
-- ============================================================
CREATE INDEX IF NOT EXISTS ix_bre_environment_condition_site_id ON bre_environment_condition(site_id);
CREATE INDEX IF NOT EXISTS ix_bre_environment_condition_created_deleted ON bre_environment_condition(created_time, is_deleted);