# -*- coding: utf-8 -*- # Generated by Django 1.9 on 2017-04-28 22:47 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion import django.utils.timezone class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Expense', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=200)), ('amount', models.DecimalField(decimal_places=2, max_digits=8)), ('date', models.DateTimeField(default=django.utils.timezone.now)), ('notes', models.TextField(blank=True, null=True)), ('category', models.CharField(choices=[('1', 'Groceries'), ('2', 'Restaurants'), ('3', 'Camping'), ('4', 'Petrol'), ('5', 'Bus'), ('6', 'Misc')], default=1, max_length=2)), ], options={ 'ordering': ('-date',), }, ), migrations.CreateModel( name='Trip', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=200)), ('slug', models.SlugField()), ('start', models.DateTimeField(blank=True, default=django.utils.timezone.now, null=True)), ('end', models.DateTimeField(blank=True, default=django.utils.timezone.now, null=True)), ('dek', models.TextField(blank=True, null=True)), ], ), migrations.AddField( model_name='expense', name='trip', field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='expenses.Trip'), ), ]