
    ]j                    2    d dl mZ d dlmZ  G d de      Zy)    )annotations)	Operationc                  4    e Zd ZdZdZdZdZd Zd Zd Z	d Z
y)	IgnoreMigrationz
    No-op migration operation that will enable the Django Migration Linter
    to detect if the entire migration should be ignored (through code).
    TFc                     y N )self	app_labelstates      L/root/env/lib/python3.12/site-packages/django_migration_linter/operations.pystate_forwardszIgnoreMigration.state_forwards           c                     y r   r	   r
   r   schema_editor
from_stateto_states        r   database_forwardsz!IgnoreMigration.database_forwards   r   r   c                     y r   r	   r   s        r   database_backwardsz"IgnoreMigration.database_backwards   r   r   c                     y)Nz6The Django migration linter will ignore this migrationr	   )r
   s    r   describezIgnoreMigration.describe   s    Gr   N)__name__
__module____qualname____doc__
reversiblereduces_to_sqlelidabler   r   r   r   r	   r   r   r   r      s-    
 JNHHr   r   N)
__future__r   $django.db.migrations.operations.baser   r   r	   r   r   <module>r$      s    " :Hi Hr   