mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-04 23:07:56 +10:00
28 lines
875 B
Python
28 lines
875 B
Python
# Generated by Django 6.0 on 2025-12-28 05:12
|
|
|
|
import pathlib
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('crawls', '0003_alter_crawl_output_dir'),
|
|
]
|
|
|
|
operations = [
|
|
# Update Django's state only to avoid table rebuild that would re-apply old constraints
|
|
migrations.SeparateDatabaseAndState(
|
|
state_operations=[
|
|
migrations.AlterField(
|
|
model_name='crawl',
|
|
name='output_dir',
|
|
field=models.FilePathField(blank=True, default='', path=pathlib.PurePosixPath('/private/tmp/archivebox-makemigrations/archive')),
|
|
),
|
|
],
|
|
database_operations=[
|
|
# No database changes - output_dir type change is cosmetic for Django admin
|
|
],
|
|
),
|
|
]
|