15 lines
329 B
Python
15 lines
329 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models
|
|
|
|
|
|
class SimpleModel(models.Model):
|
|
field = models.IntegerField()
|
|
manager = models.manager.Manager()
|
|
|
|
|
|
class Book(models.Model):
|
|
title = models.CharField(max_length=250)
|
|
is_published = models.BooleanField(default=False)
|