1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/home/migrations/0003_homepage_post_date.py

21 lines
459 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-16 18:22
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('home', '0002_homepage_image'),
]
operations = [
migrations.AddField(
model_name='homepage',
name='post_date',
field=models.DateTimeField(blank=True, null=True),
),
]