diff options
author | luxagraf <sng@luxagraf.net> | 2020-08-03 18:39:37 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-08-03 18:39:37 -0400 |
commit | 55409474092d594f3c483e0869b71f962c706322 (patch) | |
tree | 191608fdcf157e1be1477f4a6ad95e4af78c4f77 /app/normalize/migrations/0003_auto_20200418_0909.py | |
parent | eea8117ac3b58d8ac9eb1c9f94d27ac28fc67008 (diff) |
added the rest of my recent work
Diffstat (limited to 'app/normalize/migrations/0003_auto_20200418_0909.py')
-rw-r--r-- | app/normalize/migrations/0003_auto_20200418_0909.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/normalize/migrations/0003_auto_20200418_0909.py b/app/normalize/migrations/0003_auto_20200418_0909.py new file mode 100644 index 0000000..a4b887c --- /dev/null +++ b/app/normalize/migrations/0003_auto_20200418_0909.py @@ -0,0 +1,17 @@ +# Generated by Django 2.1.2 on 2020-04-18 09:09 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('normalize', '0002_auto_20191207_0922'), + ] + + operations = [ + migrations.AlterModelOptions( + name='relatedpost', + options={'get_latest_by': 'pub_date', 'ordering': ('-model_name', '-pub_date')}, + ), + ] |