Merge branch 'dev' of http://39.117.244.52:3000/kjs/ERP-node into dataflowMng

This commit is contained in:
hyeonsu
2025-09-08 16:47:58 +09:00
22 changed files with 2910 additions and 618 deletions

View File

@@ -243,6 +243,7 @@ model attach_file_info {
file_size Decimal? @db.Decimal
file_ext String? @default("NULL::character varying") @db.VarChar(32)
file_path String? @default("NULL::character varying") @db.VarChar(512)
company_code String? @default("default") @db.VarChar(32)
writer String? @default("NULL::character varying") @db.VarChar(32)
regdate DateTime? @db.Timestamp(6)
status String? @default("NULL::character varying") @db.VarChar(32)
@@ -250,7 +251,10 @@ model attach_file_info {
@@index([doc_type, objid], map: "attach_file_info_doc_type_idx")
@@index([target_objid])
@@ignore
@@index([company_code], map: "attach_file_info_company_code_idx")
@@index([company_code, doc_type], map: "attach_file_info_company_doc_type_idx")
@@index([company_code, target_objid], map: "attach_file_info_company_target_idx")
@@id([objid])
}
model authority_master {