1
0
Fork 0
mirror of synced 2024-09-18 18:28:56 +12:00
ArchiveBox/archivebox/plugantic/migrations/0008_alter_customplugin_path.py

20 lines
554 B
Python
Raw Normal View History

2024-05-18 15:13:54 +12:00
# Generated by Django 5.0.6 on 2024-05-18 01:47
import pathlib
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('plugantic', '0007_alter_customplugin_path'),
]
operations = [
migrations.AlterField(
model_name='customplugin',
name='path',
field=models.FilePathField(allow_files=False, allow_folders=True, path=pathlib.PurePosixPath('/Volumes/NVME/Users/squash/Local/Code/archiveboxes/ArchiveBox/data'), recursive=True),
),
]