Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

migration

+20
+20
upvcarshare/journeys/migrations/0014_auto_20170530_0923.py
··· 1 + # -*- coding: utf-8 -*- 2 + # Generated by Django 1.10.2 on 2017-05-30 09:23 3 + from __future__ import unicode_literals 4 + 5 + from django.db import migrations, models 6 + 7 + 8 + class Migration(migrations.Migration): 9 + 10 + dependencies = [ 11 + ('journeys', '0013_journey_total_passengers'), 12 + ] 13 + 14 + operations = [ 15 + migrations.AlterField( 16 + model_name='journey', 17 + name='time_window', 18 + field=models.PositiveIntegerField(blank=True, default=30, help_text='Se buscarán por los viajes que salgan hasta con estos minutos de antelación', verbose_name='ventana de tiempo'), 19 + ), 20 + ]