Commit a1eddd1d authored by rubbersoulz's avatar rubbersoulz

Added migration files

parent 83dd6e71
# Generated by Django 4.0.3 on 2022-03-19 17:29
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Post',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('post_title', models.CharField(max_length=150)),
('post_body', models.TextField()),
('pub_date', models.DateField(auto_now=True)),
],
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment