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/0003_user_subjects.py

19 lines
499 B
Python
Raw Permalink Normal View History

2024-02-03 21:54:05 +01:00
# Generated by Django 5.0.1 on 2024-01-29 21:06
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', '0002_alter_user_email_alter_user_first_name_and_more'),
('subjects', '0003_alter_subject_options'),
2024-02-03 21:54:05 +01:00
]
operations = [
migrations.AddField(
2024-02-03 22:07:20 +01:00
model_name='user',
name='subjects',
field=models.ManyToManyField(to='subjects.subject'),
2024-02-03 21:54:05 +01:00
),
]