Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jasondbca committed Feb 28, 2024
1 parent 1db205f commit 25a3321
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ledger/payments/migrations/0033_auto_20240228_1852.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2024-02-28 10:52
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('payments', '0032_auto_20240228_1235'),
]

operations = [
migrations.AlterField(
model_name='oracleinterfacepermission',
name='access_type',
field=models.CharField(blank=True, choices=[('all_access', 'Full access to all Financial Tools'), ('view_ledger_tools', 'View Ledger Payment Tools'), ('manage_ledger_tool', 'Manage Ledger Payment Tools'), ('view_payment_totals', 'View Payment Totals')], default=None, max_length=100, null=True),
),
]

0 comments on commit 25a3321

Please sign in to comment.