summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-08-20 03:38:55 +0000
committerjoonhoekim <26rote@gmail.com>2025-08-20 03:38:55 +0000
commit1c653c940fba07fa91db5fff8de22ac95d51c272 (patch)
tree9f6d3c2bceb4c7568f8b4fd4b4e1973f012ed3a6 /db
parent8077419e40368dc703f94d558fc746b73fbc6702 (diff)
(김준회) reset-password i18n 처리, vendorData 측 잘못된 unique 제약조건 삭제 (내부망DB에는 이미 삭제되어 있음)
Diffstat (limited to 'db')
-rw-r--r--db/schema/vendorData.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/db/schema/vendorData.ts b/db/schema/vendorData.ts
index 20348c55..c3df6b53 100644
--- a/db/schema/vendorData.ts
+++ b/db/schema/vendorData.ts
@@ -146,11 +146,6 @@ export const tagSubfields = pgTable("tag_subfields", {
table.tagTypeCode,
table.attributesId
),
- // attributesId와 projectId 조합 내에서 유니크(0429 db push 관련 수정)
- uniqAttributeIdProject: unique("uniq_attribute_id_project").on(
- table.attributesId,
- table.projectId
- ),
// tagTypes 참조를 위한 복합 FK (tagTypeCode, projectId)
// tagTypeRef: foreignKey({
// columns: [table.tagTypeCode, table.projectId],