blob: bf4293cc1a8b7bae6b62318499c6ac913e0e89c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Generated by Django 2.1.2 on 2018-12-04 15:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('notes', '0005_luxtag_owner'),
]
operations = [
migrations.RemoveField(
model_name='notebook',
name='url',
),
migrations.AddField(
model_name='notebook',
name='color_hex',
field=models.CharField(blank=True, max_length=6, null=True),
),
]
|