Skip to content

Commit

Permalink
feat: updated database services
Browse files Browse the repository at this point in the history
  • Loading branch information
tikazyq committed Aug 29, 2024
1 parent 08d1acb commit a8ab6af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/entity/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ type DatabaseColumn struct {
Name string `json:"name"`
Type string `json:"type"`
PrimaryKey bool `json:"primary_key,omitempty"`
Null bool `json:"null,omitempty"`
Null bool `json:"null"`
Key string `json:"key,omitempty"`
Default string `json:"default,omitempty"`
Default string `json:"default"`
Extra string `json:"extra,omitempty"`
Children []DatabaseColumn `json:"children,omitempty"`
Hash string `json:"hash,omitempty"`
Expand Down

0 comments on commit a8ab6af

Please sign in to comment.