mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
fix: field inconsistent order
This commit is contained in:
@@ -42,15 +42,16 @@ model Project {
|
||||
}
|
||||
|
||||
model Field {
|
||||
code String @id
|
||||
code String @id
|
||||
name String
|
||||
type String @default("string")
|
||||
type String @default("string")
|
||||
llm_prompt String?
|
||||
options Json?
|
||||
isVisibleInList Boolean @default(false) @map("is_visible_in_list")
|
||||
isVisibleInAnalysis Boolean @default(false) @map("is_visible_in_analysis")
|
||||
isRequired Boolean @default(false) @map("is_required")
|
||||
isExtra Boolean @default(true) @map("is_extra")
|
||||
createdAt DateTime @default(now()) @map("created_at")
|
||||
isVisibleInList Boolean @default(false) @map("is_visible_in_list")
|
||||
isVisibleInAnalysis Boolean @default(false) @map("is_visible_in_analysis")
|
||||
isRequired Boolean @default(false) @map("is_required")
|
||||
isExtra Boolean @default(true) @map("is_extra")
|
||||
|
||||
@@map("fields")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user