Guest User

Untitled

a guest
Aug 10th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. from django.db import models
  2.  
  3. class Car(models.Model):
  4. manufacturer = models.ForeignKey(
  5. 'Manufacturer',
  6. on_delete=models.CASCADE,
  7. )
  8. # ...
  9.  
  10. class Manufacturer(models.Model):
  11. # ...
  12. pass
Add Comment
Please, Sign In to add comment