Skip to content

Commit 7277ca1

Browse files
authored
Merge pull request #195 from Geuthur:add-migration
[ADD] Implement Discord Notification System for outstanding payments and add tax message field for owners (#193)
2 parents 1001654 + e16723b commit 7277ca1

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Generated by Django 5.2.13 on 2026-04-27 16:10
2+
3+
# Django
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
("taxsystem", "0003_allianceowner_tax_message_and_more"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="allianceowner",
16+
name="tax_message",
17+
field=models.TextField(
18+
blank=True,
19+
default="Your deposit has fallen to a negative balance. Please settle the outstanding amount immediately to avoid any penalties.",
20+
help_text="Message that is sent to alliance members when a tax payment is due.",
21+
),
22+
),
23+
migrations.AlterField(
24+
model_name="corporationowner",
25+
name="tax_message",
26+
field=models.TextField(
27+
blank=True,
28+
default="Your deposit has fallen to a negative balance. Please settle the outstanding amount immediately to avoid any penalties.",
29+
help_text="Message that is sent to corporation members when a tax payment is due.",
30+
),
31+
),
32+
]

0 commit comments

Comments
 (0)