27 lines
734 B
Python
27 lines
734 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-11-18 09:30
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pfm', '0002_auto_20161002_1309'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='category',
|
|
name='cat_type',
|
|
field=models.CharField(choices=[('I', 'Income'), ('E', 'Expence')], default='E', max_length=1, verbose_name='Type'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='transaction',
|
|
name='tr_date',
|
|
field=models.DateField(default=django.utils.timezone.now),
|
|
),
|
|
]
|