This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/accounts/migrations/0004_alter_user_subjects.py

19 lines
479 B
Python
Raw Normal View History

2024-02-03 21:54:05 +01:00
# Generated by Django 5.0.1 on 2024-01-29 21:19
2024-02-03 22:07:20 +01:00
from django.db import migrations
from django.db import models
2024-02-03 21:54:05 +01:00
class Migration(migrations.Migration):
dependencies = [
2024-02-03 22:07:20 +01:00
('accounts', '0003_user_subjects'),
('subjects', '0003_alter_subject_options'),
2024-02-03 21:54:05 +01:00
]
operations = [
migrations.AlterField(
2024-02-03 22:07:20 +01:00
model_name='user',
name='subjects',
field=models.ManyToManyField(blank=True, to='subjects.subject'),
2024-02-03 21:54:05 +01:00
),
]