Skip to content

Commit

Permalink
Add migration for #232
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Sep 8, 2016
1 parent ab48269 commit cd29e30
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions judge/migrations/0045_organization_access_code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.8 on 2016-09-08 16:05
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('judge', '0044_organization_slots'),
]

operations = [
migrations.AddField(
model_name='organization',
name='access_code',
field=models.CharField(blank=True, help_text='Student access code', max_length=7, null=True, verbose_name='access code'),
),
]

0 comments on commit cd29e30

Please sign in to comment.