Commit 4d396c78 authored by Mary Adelaide A. Salto's avatar Mary Adelaide A. Salto
parents 48751f69 4f4b6cf6
...@@ -16,6 +16,7 @@ Date of Submission: March 6, 2023 ...@@ -16,6 +16,7 @@ Date of Submission: March 6, 2023
We, members of CtrlF, truthfully completed this project with all our efforts and knowledge. We, members of CtrlF, truthfully completed this project with all our efforts and knowledge.
References: References:
DateTimeField - https://www.geeksforgeeks.org/datetimefield-django-forms/
Members' Signature: Members' Signature:
(sgd) Del Pilar, Fritzie Dianne B., March 6, 2023 (sgd) Del Pilar, Fritzie Dianne B., March 6, 2023
......
No preview for this file type
<<<<<<< HEAD
# Generated by Django 4.1.7 on 2023-03-06 02:45 # Generated by Django 4.1.7 on 2023-03-06 02:45
=======
# Generated by Django 4.1.7 on 2023-03-05 15:14
>>>>>>> 4f4b6cf6f7366e676cd579dda188e9c9faa9c539
from django.db import migrations, models from django.db import migrations, models
import django.db.models.deletion import django.db.models.deletion
......
# Generated by Django 4.1.7 on 2023-03-06 02:55
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('forum', '0002_reply_post_alter_forumpost_author_alter_reply_author'),
]
operations = [
migrations.AlterField(
model_name='reply',
name='pub_datetime',
field=models.DateTimeField(blank=True, default=django.utils.timezone.now, null=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