File: 0002_alter_testmodel_related_and_more.py

package info (click to toggle)
django-reversion 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 868 kB
  • sloc: python: 2,631; makefile: 22; sh: 7; sql: 1
file content (23 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 5.0.1 on 2024-01-30 19:07

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('test_app', '0001_initial'),
    ]

    operations = [
        migrations.AlterField(
            model_name='testmodel',
            name='related',
            field=models.ManyToManyField(blank=True, related_name='+', to='test_app.testmodelrelated'),
        ),
        migrations.AlterField(
            model_name='testmodel',
            name='related_through',
            field=models.ManyToManyField(blank=True, related_name='+', through='test_app.TestModelThrough', to='test_app.testmodelrelated'),
        ),
    ]