Skip to content

Commit

Permalink
Add missing api migration
Browse files Browse the repository at this point in the history
For some reason, it was not committed.
  • Loading branch information
Kobzol committed Sep 8, 2024
1 parent 714dfb8 commit 84a2787
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions api/migrations/0002_auto_20201109_1517.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 3.0.7 on 2020-11-09 14:17

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("api", "0001_initial"),
]

operations = [
migrations.AlterField(
model_name="usertoken",
name="token",
field=models.TextField(),
),
]

0 comments on commit 84a2787

Please sign in to comment.