mirror of
https://github.com/Hopiu/django.git
synced 2026-03-28 11:50:24 +00:00
8 lines
161 B
Python
8 lines
161 B
Python
from django.db import models
|
|
|
|
|
|
class Publication(models.Model):
|
|
title = models.CharField(max_length=30)
|
|
|
|
class Meta:
|
|
app_label = 'model_package'
|