Skip to content

Commit

Permalink
Merge pull request #50 from walnuts1018/change-delete-type
Browse files Browse the repository at this point in the history
Change delete type
  • Loading branch information
walnuts1018 authored Nov 6, 2023
2 parents ce03c6f + fd6b0ae commit 88c09de
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions back/domain/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,14 @@ type UserGroup struct {
}

type MoneyPool struct {
ID string `db:"id"`
Name string `db:"name"`
Description string `db:"description"`
Type string `db:"type"`
OwnerID string `db:"owner_id"`
Emoji string `db:"emoji"`
ID string `db:"id"`
Name string `db:"name"`
Description string `db:"description"`
Type string `db:"type"`
OwnerID string `db:"owner_id"`
Emoji string `db:"emoji"`
IsDeleted bool `db:"is_deleted"`
DeletedAt time.Time `db:"deleted_at"`
}

type MoneyProvider struct {
Expand Down

0 comments on commit 88c09de

Please sign in to comment.