24 lines
787 B
Python
24 lines
787 B
Python
# Generated by Django 4.2.30 on 2026-05-28 08:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('properties', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='property',
|
|
name='total_area',
|
|
field=models.DecimalField(decimal_places=0, default=0, max_digits=8, verbose_name='surface totale (m²)'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='property',
|
|
name='condition',
|
|
field=models.CharField(choices=[('new', 'Neuf'), ('exellent', 'Exellent état'), ('good', 'Bon état'), ('to_refresh', 'À rafraîchir'), ('to_renovate', 'À rénover')], max_length=20, verbose_name='état du bien'),
|
|
),
|
|
]
|