diff options
author | luxagraf <sng@luxagraf.net> | 2020-08-15 11:58:34 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-08-15 11:58:34 -0400 |
commit | b66d000ee469539ce7aea557b612c0444177e36d (patch) | |
tree | 273547921dc6f9ded2a5681b82514c68e28ba448 /app/unused_apps/garden/migrations/0004_auto_20200705_1650.py | |
parent | d3e57c1bd17ad3e71810235a672d4782136901a5 (diff) |
archived old unused apps and migrated fieldnotes to posts
Diffstat (limited to 'app/unused_apps/garden/migrations/0004_auto_20200705_1650.py')
-rw-r--r-- | app/unused_apps/garden/migrations/0004_auto_20200705_1650.py | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/app/unused_apps/garden/migrations/0004_auto_20200705_1650.py b/app/unused_apps/garden/migrations/0004_auto_20200705_1650.py new file mode 100644 index 0000000..6e9ea63 --- /dev/null +++ b/app/unused_apps/garden/migrations/0004_auto_20200705_1650.py @@ -0,0 +1,59 @@ +# Generated by Django 2.1.2 on 2020-07-05 16:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('garden', '0003_auto_20200705_1629'), + ] + + operations = [ + migrations.AddField( + model_name='planting', + name='number_of_plants', + field=models.PositiveIntegerField(default=1), + preserve_default=False, + ), + migrations.AddField( + model_name='planting', + name='outcome', + field=models.IntegerField(choices=[(0, 'Far Plot Mound'), (1, 'Far Plot ground'), (2, 'Herb Plot ground'), (2, 'Herb Plot bed')], default=0), + ), + migrations.AlterField( + model_name='plant', + name='scientific_name', + field=models.CharField(blank=True, max_length=200, null=True), + ), + migrations.AlterField( + model_name='planting', + name='date_hardened_off', + field=models.DateField(blank=True, null=True), + ), + migrations.AlterField( + model_name='planting', + name='date_planted', + field=models.DateField(), + ), + migrations.AlterField( + model_name='planting', + name='date_seed_sprouted', + field=models.DateField(blank=True, null=True), + ), + migrations.AlterField( + model_name='planting', + name='date_seed_started', + field=models.DateField(blank=True, null=True), + ), + migrations.AlterField( + model_name='planting', + name='garden_area', + field=models.IntegerField(choices=[(0, 'Far Plot Mound'), (1, 'Far Plot ground'), (2, 'Herb Plot ground'), (2, 'Herb Plot bed')], default=0), + ), + migrations.AlterField( + model_name='planting', + name='seed_start_area', + field=models.IntegerField(choices=[(0, 'Indoors'), (1, 'Direct Sow'), (2, 'Greenhouse'), (2, 'Purchased Seedling')], default=0), + ), + ] |