-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lucascarvalhoroncoroni
committed
Jun 11, 2017
1 parent
0ebc9b4
commit c05b42a
Showing
20 changed files
with
90 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+211 Bytes
(120%)
mainProject/SFAnalytics/__pycache__/models.cpython-36.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2017-06-11 14:34 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('SFAnalytics', '0003_auto_20170609_0148'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='StringList', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('Strings', models.CharField(max_length=10)), | ||
], | ||
), | ||
] |
34 changes: 34 additions & 0 deletions
34
mainProject/SFAnalytics/migrations/0005_auto_20170611_1512.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2017-06-11 18:12 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('SFAnalytics', '0004_stringlist'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='stringlist', | ||
name='Strings', | ||
), | ||
migrations.AddField( | ||
model_name='stringlist', | ||
name='string', | ||
field=models.CharField(default='', max_length=250), | ||
), | ||
migrations.AlterField( | ||
model_name='dlllist', | ||
name='name', | ||
field=models.CharField(default='', max_length=100), | ||
), | ||
migrations.AlterField( | ||
model_name='opcodelist', | ||
name='instruction', | ||
field=models.CharField(default='', max_length=10), | ||
), | ||
] |
Binary file added
BIN
+754 Bytes
mainProject/SFAnalytics/migrations/__pycache__/0004_stringlist.cpython-36.pyc
Binary file not shown.
Binary file added
BIN
+852 Bytes
mainProject/SFAnalytics/migrations/__pycache__/0005_auto_20170611_1512.cpython-36.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.