23 lines
491 B
Python
23 lines
491 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lock_manager', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='lock',
|
|
name='name',
|
|
field=models.CharField(
|
|
unique=True, max_length=64, verbose_name='Name'
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
]
|