|
12345678910111213141516171819 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
-
- from django.db import migrations, models
-
-
- class Migration(migrations.Migration):
-
- dependencies = [
- ('core', '0001_initial'),
- ]
-
- operations = [
- migrations.AddField(
- model_name='pin',
- name='referer',
- field=models.URLField(null=True),
- ),
- ]
|