blob: 3b1d413f03a0dc660c5c1ddc9be9f8f3a9061bd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 4.2.7 on 2024-01-17 14:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0028_wiredupdate'),
]
operations = [
migrations.AddField(
model_name='wiredpost',
name='update_schedule',
field=models.ManyToManyField(blank=True, to='gtd.wiredupdate'),
),
]
|