You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
754 B
Python
25 lines
754 B
Python
1 year ago
|
# Generated by Django 4.2.6 on 2023-10-24 16:16
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('abac', '0003_trustedauthority'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='EncryptedData',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('x_values', models.TextField()),
|
||
|
('token', models.UUIDField(default=uuid.uuid4, editable=False, unique=True)),
|
||
|
('file', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='abac.file')),
|
||
|
],
|
||
|
),
|
||
|
]
|