Skip to content

Commit

Permalink
Added migrations for last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
HealperRasmus committed Oct 27, 2020
1 parent 12389b6 commit eca6915
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions reversion/migrations/0003_auto_20201027_1546.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.0.5 on 2020-10-27 14:46

from django.db import migrations
import encrypted_fields.fields


class Migration(migrations.Migration):

dependencies = [
('reversion', '0002_auto_20201027_1438'),
]

operations = [
migrations.AlterField(
model_name='version',
name='object_repr',
field=encrypted_fields.fields.EncryptedTextField(help_text='A string representation of the object.'),
),
]

0 comments on commit eca6915

Please sign in to comment.