mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 10:05:21 +00:00
19 lines
393 B
Python
19 lines
393 B
Python
# Generated by Django 4.2.2 on 2023-09-29 07:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('notifications', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='notification',
|
|
name='updated_at',
|
|
field=models.DateTimeField(auto_now=True),
|
|
),
|
|
]
|