-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
da0326a
commit 66bc88c
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
fyle_accounting_mappings/migrations/0026_destinationattribute_code.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,18 @@ | ||
# Generated by Django 4.1.2 on 2024-08-20 08:42 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('fyle_accounting_mappings', '0025_expenseattributesdeletioncache'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='destinationattribute', | ||
name='code', | ||
field=models.CharField(help_text='Code of the attribute', 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setuptools.setup( | ||
name='fyle-accounting-mappings', | ||
version='1.34.1', | ||
version='1.34.2', | ||
author='Shwetabh Kumar', | ||
author_email='[email protected]', | ||
description='Django application to store the fyle accounting mappings in a generic manner', | ||
|