-
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.
Increase reference and travelperk_bank_account length to 255 (#198)
- Loading branch information
1 parent
fb5b152
commit 536f3e2
Showing
2 changed files
with
25 additions
and
2 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,23 @@ | ||
# Generated by Django 3.1.14 on 2024-04-19 07:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('travelperk', '0014_auto_20240212_1303'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='invoice', | ||
name='reference', | ||
field=models.CharField(help_text='Reference information for the invoice (e.g., Trip #9876543).', max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='invoice', | ||
name='travelperk_bank_account', | ||
field=models.CharField(blank=True, help_text='TravelPerk bank account information if available.', 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