20 lines
477 B
Python
20 lines
477 B
Python
# Generated by Django 3.2.5 on 2021-08-11 17:16
|
|
|
|
from django.db import migrations
|
|
import sortedm2m.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('longs', '0040_auto_20210801_0947'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='long',
|
|
name='sorted_series',
|
|
field=sortedm2m.fields.SortedManyToManyField(help_text=None, related_name='long_sorted', to='longs.LongSeries'),
|
|
),
|
|
]
|