-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/62 klantcontact #74
Conversation
Needs to be merged after #61 |
7347a66
to
5b57914
Compare
Codecov Report
@@ Coverage Diff @@
## master #74 +/- ##
==========================================
+ Coverage 96.15% 96.28% +0.12%
==========================================
Files 99 107 +8
Lines 3508 3711 +203
==========================================
+ Hits 3373 3573 +200
- Misses 135 138 +3
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
94070e0
to
fb1ef84
Compare
fb1ef84
to
3533825
Compare
id = models.UUIDField( | ||
primary_key=True, | ||
unique=True, | ||
default=uuid.uuid4, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id = models.UUIDField( | |
primary_key=True, | |
unique=True, | |
default=uuid.uuid4, | |
uuid = models.UUIDField( | |
unique=True, | |
default=uuid.uuid4, |
), | ||
null=True, | ||
) | ||
taal = models.CharField( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
zelfde als partij opmerking. Pas wel even de helptekst aan zodat het nog klopt.
), | ||
) | ||
# TODO: does this field require auto_now? | ||
plaatsgevonden_op = models.DateTimeField( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
je mag hier een default op zetten: default=timezone.now (zie django docs).
Fixes #62
Changed model structure
Added Klantcontact model