Spaces:
Running
Running

Add notification app with initial models, views, and admin configuration; remove unused image files
d5374bf
# Generated by Django 5.1.6 on 2025-02-13 21:48 | |
import django.db.models.deletion | |
from django.conf import settings | |
from django.db import migrations, models | |
class Migration(migrations.Migration): | |
dependencies = [ | |
('api', '0015_alter_bhagat_phone'), | |
] | |
operations = [ | |
migrations.CreateModel( | |
name='PushSubscription', | |
fields=[ | |
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | |
('endpoint', models.URLField(max_length=500)), | |
('p256dh', models.CharField(max_length=200)), | |
('auth', models.CharField(max_length=100)), | |
('created_at', models.DateTimeField(auto_now_add=True)), | |
('user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), | |
], | |
), | |
] | |