diff options
author | luxagraf <sng@luxagraf.net> | 2016-12-31 14:44:41 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-12-31 14:44:41 -0500 |
commit | 30ae846aa96aeb2037301e4abcb33c2b392c3548 (patch) | |
tree | a5b8ff9667416dc847307b4863a77784933e7d28 /app/ebay/migrations | |
parent | 940412cc4b934c8bc48e5cb7939afa681cc8be0a (diff) |
added amount desired
Diffstat (limited to 'app/ebay/migrations')
-rw-r--r-- | app/ebay/migrations/0005_auto_20161231_1444.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/ebay/migrations/0005_auto_20161231_1444.py b/app/ebay/migrations/0005_auto_20161231_1444.py new file mode 100644 index 0000000..a7a48ac --- /dev/null +++ b/app/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), + ), + ] |