Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
19 changes: 15 additions & 4 deletions agenda/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-08-24 19:01
# Generated by Django 1.11.15 on 2020-05-02 23:55
from __future__ import unicode_literals

from django.db import migrations, models
import django.db.models.deletion
import django.db.models.manager


class Migration(migrations.Migration):
Expand All @@ -20,13 +21,23 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('date', models.DateTimeField()),
('url', models.URLField()),
('location', models.CharField(max_length=1024)),
('description', models.TextField(blank=True)),
('url', models.URLField(blank=True, null=True)),
('location', models.TextField(blank=True)),
('description', models.CharField(blank=True, max_length=1024)),
('long_description', models.TextField(blank=True)),
('contact_info', models.TextField(help_text='Aqu\xed puedes escribir un n\xfamero telef\xf3nico, un email o un whatsapp.', verbose_name='C\xf3mo te pueden contactar las personas interesadas?')),
('important', models.BooleanField(default=False, verbose_name='Es este evento importante?')),
('background_image', models.ImageField(blank=True, help_text='ser\xe1 la imagen que utilicemos en la lista de eventos', null=True, upload_to='agenda/activities/', verbose_name='Una imagen para el evento')),
('updated', models.DateTimeField(auto_now_add=True)),
('created', models.DateTimeField(auto_now=True)),
('object_id', models.CharField(blank=True, max_length=1024, null=True)),
('content_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')),
],
options={
'ordering': ['date'],
},
managers=[
('futures', django.db.models.manager.Manager()),
],
),
]
34 changes: 0 additions & 34 deletions agenda/migrations/0002_auto_20180502_1434.py

This file was deleted.

20 changes: 0 additions & 20 deletions agenda/migrations/0003_activity_long_description.py

This file was deleted.

38 changes: 0 additions & 38 deletions agenda/migrations/0004_auto_20180525_1552.py

This file was deleted.

19 changes: 0 additions & 19 deletions agenda/migrations/0005_auto_20180905_1922.py

This file was deleted.

Loading