| 123456789101112131415161718192021222324252627 |
- # Generated by Django 4.0.4 on 2022-04-15 17:13
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('extras', '0073_journalentry_tags_custom_fields'),
- ]
- operations = [
- migrations.AlterModelOptions(
- name='customfield',
- options={'ordering': ['group_name', 'weight', 'name']},
- ),
- migrations.AddField(
- model_name='customfield',
- name='group_name',
- field=models.CharField(blank=True, max_length=50),
- ),
- migrations.AddField(
- model_name='customfield',
- name='ui_visibility',
- field=models.CharField(default='read-write', max_length=50),
- ),
- ]
|