Skip to content

Commit

Permalink
Migration of ai field
Browse files Browse the repository at this point in the history
  • Loading branch information
allholy committed Jan 16, 2025
1 parent 1b35d58 commit a3ad619
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions sounds/migrations/0055_sound_is_gen_ai.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.23 on 2025-01-16 15:26

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('sounds', '0054_alter_sound_bst_category'),
]

operations = [
migrations.AddField(
model_name='sound',
name='is_gen_ai',
field=models.BooleanField(default=False),
),
]

0 comments on commit a3ad619

Please sign in to comment.