This commit is contained in:
Trey t
2023-07-14 14:55:15 -05:00
parent 4e1c4777ad
commit c5b577fc1b
14 changed files with 107 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 4.2.2 on 2023-07-14 19:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('video', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='video',
name='gender',
field=models.PositiveSmallIntegerField(choices=[(1, 'male'), (2, 'female'), (3, 'both')], default=1),
preserve_default=False,
),
]