Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

20 řádky
379 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('core', '0001_initial'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='pin',
  11. name='referer',
  12. field=models.URLField(null=True),
  13. ),
  14. ]