forked from OpenBankProject/API-Tester
-
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.
runtests/migrations/0008_auto_20181227_1738.py - Add field is_deleted to profileoperation - Add field remark to profileoperation - Add field replica_id to profileoperation - Alter field order on profileoperation Fixes OpenBankProject#28
- Loading branch information
1 parent
dbf6236
commit ee6bd89
Showing
1 changed file
with
33 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 2.0.7 on 2018-12-27 16:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('runtests', '0007_auto_20181115_1557'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='profileoperation', | ||
name='is_deleted', | ||
field=models.IntegerField(default=0, help_text='Deleted', verbose_name='Deleted'), | ||
), | ||
migrations.AddField( | ||
model_name='profileoperation', | ||
name='remark', | ||
field=models.CharField(blank=True, help_text='remark', max_length=255, null=True, verbose_name='remark'), | ||
), | ||
migrations.AddField( | ||
model_name='profileoperation', | ||
name='replica_id', | ||
field=models.IntegerField(default=1, help_text='Test Replica id', verbose_name='Replica id'), | ||
), | ||
migrations.AlterField( | ||
model_name='profileoperation', | ||
name='order', | ||
field=models.IntegerField(default=100, help_text='Test order', verbose_name='Order'), | ||
), | ||
] |