@@ -25,6 +25,10 @@ class Migration(migrations.Migration):
('membership_start',models.DurationField(help_text='How long after January 1st the members can renew their membership.',null=True,verbose_name='membership start')),
('membership_end',models.DurationField(help_text='How long the membership can last after January 1st of the next year after members can renew their membership.',null=True,verbose_name='membership end')),
@@ -23,6 +23,10 @@ class Migration(migrations.Migration):
('balance',models.IntegerField(help_text='in centimes, money credited for this instance',verbose_name='account balance')),
('is_active',models.BooleanField(default=True,help_text='Designates whether this note should be treated as active. Unselect this instead of deleting notes.',verbose_name='active')),
],
options={
'verbose_name':'note',
'verbose_name_plural':'notes',
},
),
migrations.CreateModel(
name='Transaction',
...
...
@@ -37,6 +41,10 @@ class Migration(migrations.Migration):