Skip to content

Commit

Permalink
Create 0005_profile_ignore_image_refs_profile_ignore_link_refs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
himynamesdave committed Nov 25, 2024
1 parent ab98b03 commit 4f97e29
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 5.1.1 on 2024-11-25 12:21

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('web', '0004_file_ai_summary_provider'),
]

operations = [
migrations.AddField(
model_name='profile',
name='ignore_image_refs',
field=models.BooleanField(default=True),
),
migrations.AddField(
model_name='profile',
name='ignore_link_refs',
field=models.BooleanField(default=True),
),
]

0 comments on commit 4f97e29

Please sign in to comment.