Skip to content

Commit

Permalink
fix: add migrations forgotten in 063412f
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger committed Sep 13, 2023
1 parent 4412a12 commit 7fd93f3
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.10 on 2023-09-13 12:17

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("apis_entities", "0001_initial"),
]

operations = [
migrations.RemoveField(
model_name="tempentityclass",
name="text",
),
]
17 changes: 17 additions & 0 deletions apis_core/apis_metainfo/migrations/0006_delete_text.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.10 on 2023-09-13 12:17

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("apis_entities", "0002_remove_tempentityclass_text"),
("apis_metainfo", "0005_delete_uricandidate"),
]

operations = [
migrations.DeleteModel(
name="Text",
),
]

0 comments on commit 7fd93f3

Please sign in to comment.