rfiles-online/files/migrations/0003_sharedspace_owner_did_...

24 lines
833 B
Python

# Generated by Django 5.2.8 on 2026-02-15 22:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('files', '0002_alter_sharedspace_max_file_size_mb'),
]
operations = [
migrations.AddField(
model_name='sharedspace',
name='owner_did',
field=models.CharField(blank=True, default='', help_text='EncryptID DID of the space owner', max_length=255),
),
migrations.AddField(
model_name='sharedspace',
name='visibility',
field=models.CharField(choices=[('public', 'Public'), ('public_read', 'Public Read'), ('authenticated', 'Authenticated'), ('members_only', 'Members Only')], default='public_read', help_text='Who can access this space', max_length=20),
),
]