Rename 'salvage value' to 'replacement cost'

This more accurately reflects historical use of the field, and what the insurers actually want. Ref #439
This commit is contained in:
2022-05-26 10:29:53 +01:00
parent 9273ca35cf
commit 4b1dc37a7f
3 changed files with 30 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.12 on 2022-05-26 09:22
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('assets', '0024_alter_asset_salvage_value'),
]
operations = [
migrations.RenameField(
model_name='asset',
old_name='salvage_value',
new_name='replacement_cost',
),
]