Skip to content

Commit

Permalink
chore: missing db migration for #1397 (#1405)
Browse files Browse the repository at this point in the history
* chore: missing db migration for #1397

* refactor: rename missing db migration

---------

Co-authored-by: Jake Rosenberg <[email protected]>
  • Loading branch information
wesleyboar and jarosenb authored Aug 16, 2024
1 parent 68e8535 commit 31616be
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 4.2.11 on 2024-08-16 16:34

from django.db import migrations, models
import django.db.models.functions.text


class Migration(migrations.Migration):
dependencies = [
("workspace", "0016_applistingentry_user_guide_link"),
]

operations = [
migrations.AlterModelOptions(
name="applistingentry",
options={
"ordering": [
"-is_popular",
"-is_simcenter",
django.db.models.functions.text.Lower("label"),
],
"verbose_name_plural": "App Listing Entries",
},
),
]

0 comments on commit 31616be

Please sign in to comment.