# Generated by Django 6.0.6 on 2026-07-14 22:35 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('billing', '0001_initial'), ] operations = [ migrations.AddField( model_name='subscription', name='auto_renew', field=models.BooleanField(default=True, help_text='Issue the next period automatically before this one ends. Off means you invoice this club by hand.', verbose_name='auto renew'), ), ]