diff options
| author | Andrew Godwin | 2022-11-12 15:10:15 -0700 | 
|---|---|---|
| committer | Andrew Godwin | 2022-11-12 15:10:15 -0700 | 
| commit | dd4328ae523bb375dd871e85d1bacd9311e87a89 (patch) | |
| tree | 6a4ec8bc83be3bdd18421b3f0c221b7a6091cf9e /users/migrations/0002_identity_public_key_id.py | |
| parent | 8fd5a9292c7d3aac352d3c0e96288bff8a79cb47 (diff) | |
| download | takahe-dd4328ae523bb375dd871e85d1bacd9311e87a89.tar.gz takahe-dd4328ae523bb375dd871e85d1bacd9311e87a89.tar.bz2 takahe-dd4328ae523bb375dd871e85d1bacd9311e87a89.zip | |
Add JSON-LD signatures and tests for sig stuff
Diffstat (limited to 'users/migrations/0002_identity_public_key_id.py')
| -rw-r--r-- | users/migrations/0002_identity_public_key_id.py | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/users/migrations/0002_identity_public_key_id.py b/users/migrations/0002_identity_public_key_id.py new file mode 100644 index 0000000..3648c20 --- /dev/null +++ b/users/migrations/0002_identity_public_key_id.py @@ -0,0 +1,18 @@ +# Generated by Django 4.1.3 on 2022-11-12 21:29 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + +    dependencies = [ +        ("users", "0001_initial"), +    ] + +    operations = [ +        migrations.AddField( +            model_name="identity", +            name="public_key_id", +            field=models.TextField(blank=True, null=True), +        ), +    ] | 
