mirror of
https://github.com/not-kennethreitz/morepython.org.git
synced 2026-06-05 15:00:18 +00:00
procfile
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 2.1.7 on 2019-03-10 17:37
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.utils.timezone
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='post',
|
||||
name='created_date',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='post',
|
||||
name='published_date',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='post',
|
||||
name='timestamp',
|
||||
field=models.DateTimeField(default=django.utils.timezone.now),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user