diff options
author | luxagraf <sng@luxagraf.net> | 2017-12-14 18:47:45 -0800 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-12-14 18:47:45 -0800 |
commit | 83b7318a4672d32ed77cd3f906f43f5ad1cce854 (patch) | |
tree | 457806693c791360ada99dd9b3d19a5dc9712936 /app/unused_apps/ebay/migrations/0005_auto_20161231_1444.py | |
parent | adb5c207bea19cedc400b65bd8cd2c54ca0faba0 (diff) |
archived old apps that I'm not using
Diffstat (limited to 'app/unused_apps/ebay/migrations/0005_auto_20161231_1444.py')
-rw-r--r-- | app/unused_apps/ebay/migrations/0005_auto_20161231_1444.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/unused_apps/ebay/migrations/0005_auto_20161231_1444.py b/app/unused_apps/ebay/migrations/0005_auto_20161231_1444.py new file mode 100644 index 0000000..a7a48ac --- /dev/null +++ b/app/unused_apps/ebay/migrations/0005_auto_20161231_1444.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-12-31 14:44 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ebay', '0004_trackeditem_date_ending'), + ] + + operations = [ + migrations.AlterModelOptions( + name='trackeditem', + options={'get_latest_by': 'date_ending', 'ordering': ('-date_ending', 'amount_desired')}, + ), + migrations.AddField( + model_name='trackeditem', + name='amount_desired', + field=models.IntegerField(choices=[(0, '1'), (1, '2'), (2, '3'), (3, '4'), (4, '5')], default=0), + ), + ] |