mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 16:45:41 +01:00
20 lines
379 B
Python
20 lines
379 B
Python
|
|
# -*- 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),
|
||
|
|
),
|
||
|
|
]
|