26 lines
658 B
Python
26 lines
658 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2018-02-27 01:39
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('events', '0004_auto_20180226_2001'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='event',
|
|
name='cost',
|
|
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=6),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='event',
|
|
name='location',
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
]
|