0001_initial.py 593 B

12345678910111213141516171819202122
  1. # Generated by Django 2.2.4 on 2026-04-21 03:44
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = [
  6. ]
  7. operations = [
  8. migrations.CreateModel(
  9. name='Award',
  10. fields=[
  11. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  12. ('description', models.TextField(blank=True, max_length=500, null=True)),
  13. ('photo', models.ImageField(blank=True, upload_to='Award/')),
  14. ],
  15. ),
  16. ]