19 lines
449 B
Python
19 lines
449 B
Python
# Generated by Django 3.2.12 on 2022-08-24 07:50
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rpm', '0003_auto_20220823_1628'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='rpj',
|
|
name='remployees',
|
|
field=models.ManyToManyField(related_name='rpj_remployees', through='rpm.Rpjmember', to='rpm.Remployee'),
|
|
),
|
|
]
|