blob: a4bdc30eb6056843c89836a3a795cc6dbb94acd1 (
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 16:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('notes', '0006_auto_20181204_0957'),
]
operations = [
migrations.RemoveField(
model_name='notebook',
name='color_hex',
),
migrations.AddField(
model_name='notebook',
name='color_rgb',
field=models.CharField(blank=True, max_length=20, null=True),
),
]
|