Skip to content

Commit

Permalink
🗃️(backend) add missing ordering migrations
Browse files Browse the repository at this point in the history
While fixing some backend warnings, I forgot to generate
the associated migrations. Fixed my error.
Non-critical migrations about default ordering.
  • Loading branch information
lebaudantoine committed Jan 13, 2025
1 parent 7ad9015 commit fe9fe4d
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 5.1.4 on 2025-01-13 12:25

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0009_alter_recording_status'),
]

operations = [
migrations.AlterModelOptions(
name='resourceaccess',
options={'ordering': ('-created_at',), 'verbose_name': 'Resource access', 'verbose_name_plural': 'Resource accesses'},
),
migrations.AlterModelOptions(
name='user',
options={'ordering': ('-created_at',), 'verbose_name': 'user', 'verbose_name_plural': 'users'},
),
]

0 comments on commit fe9fe4d

Please sign in to comment.