4b13ff681e
server changes finished, tests, cleanup Add entitled user table Fix formatting Finish entitled users table & implement new percent base Fix typing Fixed remarks & errors Fix new precent base representation Update autoupdate service Remove unneeded prettier entry Remove unneeded css
19 lines
405 B
Python
19 lines
405 B
Python
# Generated by jsangmeister on 2021-03-18 16:27
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("assignments", "0018_votes_amount"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="assignmentvote",
|
|
name="user_token",
|
|
field=models.CharField(null=True, max_length=16),
|
|
),
|
|
]
|