You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0002_notice_user_id.py 397B

11 months ago
123456789101112131415161718
  1. # Generated by Django 4.2.6 on 2023-12-07 13:12
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('polls', '0001_initial'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='notice',
  10. name='user_id',
  11. field=models.IntegerField(blank=True, default=None, null=True),
  12. ),
  13. ]