2019-10-29 14:17:07 +01:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
# Create your models here.
|
2019-11-19 12:48:20 +01:00
|
|
|
class Notice(models.Model):
|
|
|
|
notice_title = models.CharField(max_length=80)
|
|
|
|
notice_text = models.CharField(max_length=400)
|
|
|
|
pub_start = models.DateTimeField()
|
|
|
|
pub_end = models.DateTimeField()
|