Skip to content

Commit

Permalink
Merge pull request #41 from ch3p4ll3/ch3p4ll3-patch-1
Browse files Browse the repository at this point in the history
Fix db PK size + fix all contributors json
  • Loading branch information
ch3p4ll3 authored Jan 11, 2024
2 parents 439f538 + a25694b commit 43132bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,4 @@
"repoHost": "https://github.com",
"projectName": "QBittorrentBot",
"projectOwner": "ch3p4ll3"
}
"projectName": "QBittorrentBot",
"projectOwner": "ch3p4ll3"
}
2 changes: 1 addition & 1 deletion src/db_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class Support(db.Entity):
id = PrimaryKey(int)
id = PrimaryKey(int, size=64)
Action = Required(str, 255)


Expand Down

0 comments on commit 43132bc

Please sign in to comment.