Blame view

elasticity/migrations/0019_auto_20170220_1021.py 571 Bytes
8146dcf82   Thanasis Naskos   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  # -*- coding: utf-8 -*-
  # Generated by Django 1.10.5 on 2017-02-20 10:21
  from __future__ import unicode_literals
  
  from django.db import migrations, models
  
  
  class Migration(migrations.Migration):
  
      dependencies = [
          ('elasticity', '0018_auto_20170211_0931'),
      ]
  
      operations = [
          migrations.AlterField(
              model_name='elasticity',
              name='smoothing',
              field=models.CharField(choices=[('wf', 'None'), ('wt', 'MA'), ('ewmat', 'EWMA')], default='ewmat', max_length=300, verbose_name='Smoothing Window'),
          ),
      ]