Blame view

elasticity/migrations/0018_auto_20170211_0931.py 570 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-11 09:31
  from __future__ import unicode_literals
  
  from django.db import migrations, models
  
  
  class Migration(migrations.Migration):
  
      dependencies = [
          ('elasticity', '0017_auto_20170211_0905'),
      ]
  
      operations = [
          migrations.AlterField(
              model_name='elasticity',
              name='smoothing',
              field=models.CharField(choices=[('wf', 'None'), ('wt', 'MA'), ('ewmat', 'EWMA')], default='ewma', max_length=300, verbose_name='Smoothing Window'),
          ),
      ]