Skip to content

Commit

Permalink
fix: 🐛 Fix error in .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
albinmedoc committed Jul 30, 2024
1 parent a535398 commit 7f103a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -444,5 +444,5 @@ poetry.toml
testing/core
apps/wizarr-backend-next/
apps/wizarr-backend-old/
database/
/apps/wizarr-backenddatabase/
.sentryclirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from peewee import BooleanField, CharField, IntegerField
from app.models.database.base import BaseModel

class Onboarding(BaseModel):
id = IntegerField(primary_key=True, unique=True)
value = CharField(null=False)
order = IntegerField(null=False, unique=True)
enabled = BooleanField(default=False)

0 comments on commit 7f103a6

Please sign in to comment.