Skip to content

Commit b183742

Browse files
committed
Add migration
1 parent e2ae26a commit b183742

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.20 on 2025-04-24 19:26
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('downloads', '0011_alter_os_creator_alter_os_last_modified_by_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='release',
15+
name='version',
16+
field=models.IntegerField(choices=[(3, 'Python 3.x.x'), (2, 'Python 2.x.x'), (1, 'Python 1.x.x'), (100, 'Python install manager')], default=3),
17+
),
18+
]

0 commit comments

Comments
 (0)