trav
2021-04-07 09:44:56 -04:00
parent a4f4a1daa2
commit 9d19e0e73c
5 changed files with 87 additions and 1 deletions

View File

@ -0,0 +1,19 @@
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)),
],
),
]