-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from robotichead/development-0.3
Development 0.3
- Loading branch information
Showing
40 changed files
with
1,844 additions
and
590 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.5 on 2017-04-18 22:29 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0002_initialise_data'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='costs', | ||
fields=[ | ||
('cost_id', models.AutoField(primary_key=True, serialize=False)), | ||
('cost_description', models.CharField(max_length=255)), | ||
('cost_amount', models.DecimalField(decimal_places=2, max_digits=19)), | ||
('is_deleted', models.CharField(choices=[('TRUE', 'TRUE'), ('FALSE', 'FALSE')], default='FALSE', max_length=5)), | ||
('project_id', models.ForeignKey(blank=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.project')), | ||
('task_id', models.ForeignKey(blank=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.tasks')), | ||
], | ||
), | ||
] |
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,26 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.5 on 2017-04-18 22:35 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0003_costs'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='costs', | ||
name='project_id', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.project'), | ||
), | ||
migrations.AlterField( | ||
model_name='costs', | ||
name='task_id', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.tasks'), | ||
), | ||
] |
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,32 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.5 on 2017-04-19 22:36 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0004_auto_20170418_2235'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='documents', | ||
fields=[ | ||
('document_id', models.AutoField(primary_key=True, serialize=False)), | ||
('document_description', models.CharField(max_length=255)), | ||
('document_location', models.TextField()), | ||
('document_folder', models.CharField(max_length=255)), | ||
('is_deleted', models.CharField(choices=[('TRUE', 'TRUE'), ('FALSE', 'FALSE')], default='FALSE', max_length=5)), | ||
('project_id', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.project')), | ||
('task_id', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.tasks')), | ||
], | ||
), | ||
migrations.AlterModelTable( | ||
name='costs', | ||
table='costs', | ||
), | ||
] |
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,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2017-04-19 08:51 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0004_auto_20170418_2235'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='costs', | ||
name='cost_has_paid', | ||
field=models.CharField(choices=[('Not paid', 'Not paid'), ('Paid', 'Paid'), ('Cancelled', 'Cancelled')], default='Has not paid', max_length=15), | ||
), | ||
] |
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,26 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.5 on 2017-04-19 22:47 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0005_auto_20170419_2236'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='document_folders', | ||
fields=[ | ||
('document_folder_id', models.AutoField(primary_key=True, serialize=False)), | ||
('document_folder_description', models.CharField(max_length=255)), | ||
('is_deleted', models.CharField(choices=[('TRUE', 'TRUE'), ('FALSE', 'FALSE')], default='FALSE', max_length=5)), | ||
('project_id', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.project')), | ||
('task_id', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.tasks')), | ||
], | ||
), | ||
] |
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,16 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2017-04-25 13:29 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0005_costs_cost_has_paid'), | ||
('NearBeach', '0006_document_folders'), | ||
] | ||
|
||
operations = [ | ||
] |
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-04-25 13:29 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0007_merge_20170425_2329'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='costs', | ||
name='cost_has_paid', | ||
), | ||
migrations.RemoveField( | ||
model_name='documents', | ||
name='document_folder', | ||
), | ||
migrations.AddField( | ||
model_name='documents', | ||
name='document_folder_id', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.document_folders'), | ||
), | ||
migrations.AddField( | ||
model_name='project_customers', | ||
name='customer_description', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
] |
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,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2017-04-26 11:49 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0008_auto_20170425_2329'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='tasks_customers', | ||
name='customers_description', | ||
field=models.CharField(blank=True, max_length=155, null=True), | ||
), | ||
] |
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-04-26 11:53 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0009_tasks_customers_customers_description'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='tasks_customers', | ||
name='tasks_id', | ||
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.tasks'), | ||
preserve_default=False, | ||
), | ||
] |
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,21 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2017-05-01 07:19 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0010_tasks_customers_tasks_id'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='document_folders', | ||
name='parent_folder_id', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='NearBeach.document_folders'), | ||
), | ||
] |
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,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.1 on 2017-05-10 04:44 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('NearBeach', '0011_document_folders_parent_folder_id'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='documents', | ||
name='image', | ||
field=models.FileField(blank=True, null=True, upload_to=b''), | ||
), | ||
] |
Oops, something went wrong.