blob: fc6d9111ae97e0358cb45e82a3d89472c977d701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 2.1.2 on 2018-12-04 12:53
from django.db import migrations
import taggit.managers
class Migration(migrations.Migration):
dependencies = [
('notes', '0003_auto_20181204_0641'),
]
operations = [
migrations.AlterField(
model_name='note',
name='tags',
field=taggit.managers.TaggableManager(blank=True, help_text='Tags', through='notes.TaggedNotes', to='notes.LuxTag', verbose_name='Tags'),
),
]
|