blob: 76b1f3a1741717beab358b2d10dd507d6c6192ae (
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
26
27
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-06-16 14:44
from __future__ import unicode_literals
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('photos', '0010_auto_20160517_0906'),
('notes', '0003_auto_20160208_1120'),
]
operations = [
migrations.AddField(
model_name='luxnote',
name='images',
field=models.ManyToManyField(to='photos.LuxImage'),
),
migrations.AlterField(
model_name='luxnote',
name='pub_date',
field=models.DateTimeField(default=django.utils.timezone.now),
),
]
|