diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 21:49:34 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 21:49:34 -0500 |
commit | 199184b3b680bc4c8878bf11a60c0fbf72fb612f (patch) | |
tree | 92195ea8a1ba5e61fefca51896c2b8e01cdeaf43 /app/unused_apps/income/migrations/0003_auto_20161213_1038.py | |
parent | 129a8545b520380a8567a4e7405634250f3d7da5 (diff) |
removed some things I wasn't using to clean up code base
Diffstat (limited to 'app/unused_apps/income/migrations/0003_auto_20161213_1038.py')
-rw-r--r-- | app/unused_apps/income/migrations/0003_auto_20161213_1038.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/unused_apps/income/migrations/0003_auto_20161213_1038.py b/app/unused_apps/income/migrations/0003_auto_20161213_1038.py new file mode 100644 index 0000000..559cd5a --- /dev/null +++ b/app/unused_apps/income/migrations/0003_auto_20161213_1038.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-12-13 10:38 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('income', '0002_gig_due_date'), + ] + + operations = [ + migrations.AlterField( + model_name='gig', + name='due_date', + field=models.DateField(blank=True, null=True), + ), + migrations.AlterField( + model_name='gig', + name='pub_date', + field=models.DateTimeField(blank=True, null=True), + ), + ] |