mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-22 14:29:36 +02:00
43 lines
2.4 KiB
Python
43 lines
2.4 KiB
Python
# Generated by Django 5.0.8 on 2025-02-08 01:50
|
|
|
|
import django.db.models.deletion
|
|
import uuid
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('adventures', '0022_hotel'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Lodging',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)),
|
|
('name', models.CharField(max_length=200)),
|
|
('type', models.CharField(choices=[('hotel', 'Hotel'), ('hostel', 'Hostel'), ('resort', 'Resort'), ('bnb', 'Bed & Breakfast'), ('campground', 'Campground'), ('cabin', 'Cabin'), ('apartment', 'Apartment'), ('house', 'House'), ('villa', 'Villa'), ('motel', 'Motel'), ('other', 'Other')], default='other', max_length=100)),
|
|
('description', models.TextField(blank=True, null=True)),
|
|
('rating', models.FloatField(blank=True, null=True)),
|
|
('link', models.URLField(blank=True, max_length=2083, null=True)),
|
|
('check_in', models.DateTimeField(blank=True, null=True)),
|
|
('check_out', models.DateTimeField(blank=True, null=True)),
|
|
('reservation_number', models.CharField(blank=True, max_length=100, null=True)),
|
|
('price', models.DecimalField(blank=True, decimal_places=2, max_digits=9, null=True)),
|
|
('latitude', models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True)),
|
|
('longitude', models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True)),
|
|
('location', models.CharField(blank=True, max_length=200, null=True)),
|
|
('is_public', models.BooleanField(default=False)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('collection', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='adventures.collection')),
|
|
('user_id', models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Hotel',
|
|
),
|
|
]
|