mirror of
https://github.com/Hopiu/django.git
synced 2026-03-18 06:50:24 +00:00
9 lines
285 B
Python
9 lines
285 B
Python
from django.db import models
|
|
|
|
class Book(models.Model):
|
|
title = models.CharField(max_length=250)
|
|
is_published = models.BooleanField(default=False)
|
|
|
|
class BlogPost(models.Model):
|
|
title = models.CharField(max_length=250)
|
|
is_published = models.BooleanField(default=False)
|