20 lines
467 B
Python
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)),
|
||
|
],
|
||
|
),
|
||
|
]
|