Commit 21a0ac25b7ad404a42d876e4e3d942175cc0b31c
1 parent
4d667d76
Exists in
master
and in
5 other branches
remoção da app avaliacao
Showing
1 changed file
with
0 additions
and
32 deletions
Show diff stats
avaliacao/migrations/0001_initial.py
... | ... | @@ -1,32 +0,0 @@ |
1 | -# -*- coding: utf-8 -*- | |
2 | -# Generated by Django 1.10 on 2016-10-05 21:02 | |
3 | -from __future__ import unicode_literals | |
4 | - | |
5 | -from django.db import migrations, models | |
6 | -import django.db.models.deletion | |
7 | - | |
8 | - | |
9 | -class Migration(migrations.Migration): | |
10 | - | |
11 | - initial = True | |
12 | - | |
13 | - dependencies = [ | |
14 | - ('courses', '0002_subject_students'), | |
15 | - ] | |
16 | - | |
17 | - operations = [ | |
18 | - migrations.CreateModel( | |
19 | - name='Avaliacao', | |
20 | - fields=[ | |
21 | - ('activity_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='courses.Activity')), | |
22 | - ('name_avalicao', models.CharField(max_length=100, verbose_name='Name')), | |
23 | - ('init_date', models.DateField(verbose_name='Begin of Avaliacao Date')), | |
24 | - ('end_date', models.DateField(verbose_name='End of Avaliacao Date')), | |
25 | - ], | |
26 | - options={ | |
27 | - 'verbose_name': 'Avaliacao', | |
28 | - 'verbose_name_plural': 'Avaliacoes', | |
29 | - }, | |
30 | - bases=('courses.activity',), | |
31 | - ), | |
32 | - ] |