# Generated by Django 5.2.7 on 2025-10-31 12:24 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Property', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=255)), ('location', models.CharField(max_length=255)), ('price_per_night', models.DecimalField(decimal_places=2, max_digits=8)), ('image_url', models.URLField(blank=True, max_length=1024, null=True)), ], ), ]