Feature: Add referer field for Pin

This commit is contained in:
winkidney
2018-08-21 19:08:35 +08:00
parent 89f088cc05
commit b7135b64aa
7 changed files with 43 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
# -*- 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),
),
]