This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
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
9483ece
commit ae5da12
Showing
13 changed files
with
450 additions
and
55 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
39 changes: 39 additions & 0 deletions
39
...submissions/migrations/0025_historicalpostfinancetransaction_transaction_type_and_more.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,39 @@ | ||
# Generated by Django 4.2.9 on 2024-02-08 10:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("submissions", "0024_geom_field_input_type_for_form"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="historicalpostfinancetransaction", | ||
name="transaction_type", | ||
field=models.CharField( | ||
choices=[ | ||
("submission", "Soumission"), | ||
("prolongation", "Prolongation"), | ||
], | ||
default="submission", | ||
max_length=20, | ||
verbose_name="Type de transaction", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="postfinancetransaction", | ||
name="transaction_type", | ||
field=models.CharField( | ||
choices=[ | ||
("submission", "Soumission"), | ||
("prolongation", "Prolongation"), | ||
], | ||
default="submission", | ||
max_length=20, | ||
verbose_name="Type de transaction", | ||
), | ||
), | ||
] |
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
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
Oops, something went wrong.