32 lines
965 B
Python
32 lines
965 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.14 on 2018-07-13 13:21
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import taggit.managers
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('taggit', '0002_auto_20150616_2121'),
|
|
('equipment', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='equipmentremark',
|
|
name='amount',
|
|
),
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='tags',
|
|
field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='equipmentremark',
|
|
name='ids',
|
|
field=models.PositiveIntegerField(default=0, verbose_name='Identifiants'),
|
|
preserve_default=False,
|
|
),
|
|
]
|