23 lines
552 B
Python
23 lines
552 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.13 on 2018-06-19 20:24
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.serializers.json
|
|
from django.db import migrations, models
|
|
import oxdjango.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lookup', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='MovieId',
|
|
name='imdb_id',
|
|
field=models.CharField(blank=True, default=None, max_length=16, null=True, unique=True),
|
|
),
|
|
]
|
|
|