0007_scores_address.py 499 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2020-09-09 08:54
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('dati', '0006_auto_20200909_1457'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='scores',
  12. name='address',
  13. field=models.CharField(default='TBD', max_length=255),
  14. preserve_default=False,
  15. ),
  16. ]