blob: 7eb3823b4403bd82de2162d4dd58857513723cbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-09-10 12:48
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('archaeological_files', '0020_auto_20190910_1242'),
]
operations = [
migrations.AddField(
model_name='file',
name='locked',
field=models.BooleanField(default=False, verbose_name='Item locked for edition'),
),
migrations.AddField(
model_name='historicalfile',
name='locked',
field=models.BooleanField(default=False, verbose_name='Item locked for edition'),
),
]
|