This repository has been archived on 2021-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
djangoldp-webpushnotification/djangoldp_webpushnotification/migrations/0012_vapidkeyset.py

20 lines
467 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('djangoldp_notification', '0011_auto_20210218_1145'),
]
operations = [
migrations.CreateModel(
name='VAPIDKeyset',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('public_key', models.BinaryField(max_length=87)),
('private_key', models.BinaryField(max_length=43)),
],
),
]