Development of an internal social media platform with personalised dashboards for students
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_index_ip_and_session.py 778B

1234567891011121314151617181920212223242526272829
  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. ('hitcount', '0001_initial'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='hit',
  11. name='ip',
  12. field=models.CharField(max_length=40, db_index=True, editable=False),
  13. ),
  14. migrations.AlterField(
  15. model_name='hit',
  16. name='session',
  17. field=models.CharField(max_length=40, db_index=True, editable=False),
  18. ),
  19. migrations.AlterField(
  20. model_name='hitcount',
  21. name='object_pk',
  22. field=models.PositiveIntegerField(verbose_name='object ID'),
  23. ),
  24. ]