Skip to content
Snippets Groups Projects

Refactor

Merged Jan Maximilian Michal requested to merge refactor into master
1 file
+ 21
0
Compare changes
  • Side-by-side
  • Inline
 
# -*- coding: utf-8 -*-
 
# Generated by Django 1.11.7 on 2017-11-10 21:46
 
from __future__ import unicode_literals
 
 
import core.models
 
from django.db import migrations, models
 
 
 
class Migration(migrations.Migration):
 
 
dependencies = [
 
('core', '0002_auto_20171110_1612'),
 
]
 
 
operations = [
 
migrations.AddField(
 
model_name='student',
 
name='matrikel_no',
 
field=models.CharField(default=core.models.random_matrikel_no, max_length=8, unique=True),
 
),
 
]
Loading