25 lines
675 B
Python
25 lines
675 B
Python
|
# Generated by Django 3.0.8 on 2020-07-21 20:03
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='User',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('zeus_id', models.IntegerField()),
|
||
|
('username', models.CharField(max_length=255)),
|
||
|
('student_number', models.CharField(max_length=255)),
|
||
|
('real_name', models.CharField(max_length=255)),
|
||
|
],
|
||
|
),
|
||
|
]
|