mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
19 lines
399 B
Python
19 lines
399 B
Python
|
# Generated by Django 4.2.2 on 2023-06-27 17:15
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('studygroup_messages', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='message',
|
||
|
name='timestamp',
|
||
|
field=models.DateTimeField(auto_now_add=True),
|
||
|
),
|
||
|
]
|