Commit 5ac2d65c by Czémán Arnold

dashboard: Alter Profile org_id max length to 255

parent 20758843
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dashboard', '0005_profile_two_factor_secret'),
]
operations = [
migrations.AlterField(
model_name='profile',
name='org_id',
field=models.CharField(help_text='Unique identifier of the person, e.g. a student number.', max_length=255, unique=True, null=True, blank=True),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment