Make post titles and descriptions optional
This commit is contained in:
parent
da7075a904
commit
8ba167823d
2 changed files with 25 additions and 2 deletions
|
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 4.0.5 on 2022-07-04 20:31
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("posts", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="post",
|
||||
name="body",
|
||||
field=models.TextField(null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="post",
|
||||
name="title",
|
||||
field=models.CharField(max_length=255, null=True),
|
||||
),
|
||||
]
|
||||
|
|
@ -8,8 +8,8 @@ class Post(models.Model):
|
|||
posted = models.DateTimeField(auto_now_add=True)
|
||||
public = models.BooleanField(default=False)
|
||||
|
||||
title = models.CharField(max_length=255)
|
||||
body = models.TextField()
|
||||
title = models.CharField(max_length=255, null=True)
|
||||
body = models.TextField(null=True)
|
||||
|
||||
def __str__(self):
|
||||
return f"Post: {self.title} at {self.posted.strftime('%Y-%m-%d %H:%S')}"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue