spejstore/storage/migrations/0004_auto_20170528_1945.py

37 lines
986 B
Python
Raw Normal View History

2017-05-28 20:00:54 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2017-05-28 19:45
from __future__ import unicode_literals
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
2023-07-11 13:34:35 +00:00
("storage", "0003_auto_20170424_2002"),
2017-05-28 20:00:54 +00:00
]
operations = [
migrations.RemoveField(
2023-07-11 13:34:35 +00:00
model_name="label",
name="revision",
2017-05-28 20:00:54 +00:00
),
migrations.AddField(
2023-07-11 13:34:35 +00:00
model_name="label",
name="created",
field=models.DateTimeField(
auto_now_add=True, default=django.utils.timezone.now
),
2017-05-28 20:00:54 +00:00
preserve_default=False,
),
migrations.AddField(
2023-07-11 13:34:35 +00:00
model_name="label",
name="style",
field=models.CharField(
choices=[("basic_99012_v1", "Basic Dymo 89x36mm label")],
default="basic_99012_v1",
max_length=32,
),
2017-05-28 20:00:54 +00:00
),
]