diff options
author | luxagraf <sng@luxagraf.net> | 2019-11-10 08:59:39 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-11-10 08:59:39 -0500 |
commit | a968aaa8dcbc7465b774bba159e74f71bf7858f3 (patch) | |
tree | cd4a518012a8d801412e8f56a85dfedc34451ac3 /app/jrnl/migrations | |
parent | c3c2664ea31f2f561893ff4e51fded995251bed9 (diff) |
renamed new books relation to just books
Diffstat (limited to 'app/jrnl/migrations')
-rw-r--r-- | app/jrnl/migrations/0047_auto_20191110_0859.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/jrnl/migrations/0047_auto_20191110_0859.py b/app/jrnl/migrations/0047_auto_20191110_0859.py new file mode 100644 index 0000000..28d3866 --- /dev/null +++ b/app/jrnl/migrations/0047_auto_20191110_0859.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.6 on 2019-11-10 08:59 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('jrnl', '0046_remove_entry_books'), + ] + + operations = [ + migrations.RenameField( + model_name='entry', + old_name='books_new', + new_name='books', + ), + ] |