mirror of
https://github.com/pinry/pinry.git
synced 2026-01-11 01:32:05 +01:00
Feature: Add migrations for url and referer length chagne
This commit is contained in:
23
core/migrations/0010_auto_20210311_1521.py
Normal file
23
core/migrations/0010_auto_20210311_1521.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.14 on 2021-03-11 15:21
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0009_auto_20200825_0800'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='pin',
|
||||
name='referer',
|
||||
field=models.CharField(blank=True, max_length=2048, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='pin',
|
||||
name='url',
|
||||
field=models.CharField(blank=True, max_length=2048, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user