Skip to content
This repository was archived by the owner on Dec 16, 2017. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions authentication/migrations/0001_initial.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-12-04 15:28
from __future__ import unicode_literals

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

replaces = [('authentication', '0001_initial'), ('authentication', '0002_profile_has_bank_linked'), ('authentication', '0003_userbank'), ('authentication', '0004_userbank_institution_name'), ('authentication', '0005_auto_20171011_1314'), ('authentication', '0006_auto_20171109_1333'), ('authentication', '0007_remove_profile_has_bank_linked')]

initial = True

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = [
migrations.CreateModel(
name='Profile',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='profile', to=settings.AUTH_USER_MODEL)),
],
),
migrations.CreateModel(
name='UserBank',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('item_id', models.CharField(max_length=1000)),
('access_token', models.CharField(max_length=1000)),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='userbank', to=settings.AUTH_USER_MODEL)),
('institution_name', models.CharField(default='tb', max_length=1000)),
('account_name_field', models.CharField(default='Dummy account name', max_length=1000)),
('current_balance_field', models.FloatField(default=0.0)),
('expenditure_field', models.FloatField(default=0.0)),
('income_field', models.FloatField(default=0.0)),
],
),
]
20 changes: 0 additions & 20 deletions authentication/migrations/0002_profile_has_bank_linked.py

This file was deleted.

29 changes: 0 additions & 29 deletions authentication/migrations/0003_userbank.py

This file was deleted.

21 changes: 0 additions & 21 deletions authentication/migrations/0004_userbank_institution_name.py

This file was deleted.

22 changes: 0 additions & 22 deletions authentication/migrations/0005_auto_20171011_1314.py

This file was deleted.

39 changes: 0 additions & 39 deletions authentication/migrations/0006_auto_20171109_1333.py

This file was deleted.

19 changes: 0 additions & 19 deletions authentication/migrations/0007_remove_profile_has_bank_linked.py

This file was deleted.

Empty file.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ chardet==3.0.4
cryptography==2.1.4
defusedxml==0.5.0
dj-database-url==0.4.2
Django==1.11.7
Django==2.0
django-security==0.9.5
django-webpack-loader==0.5.0
flake8==3.5.0
Expand Down
41 changes: 0 additions & 41 deletions stocks/migrations/0001_initial.py

This file was deleted.

Loading