24 lines
733 B
Python
24 lines
733 B
Python
# Generated by Django 6.0 on 2025-12-14 16:15
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Pin',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('label', models.CharField(max_length=100)),
|
|
('url', models.URLField(max_length=300)),
|
|
('x', models.FloatField(help_text='X position as percentage (0-100)')),
|
|
('y', models.FloatField(help_text='Y position as percentage (0-100)')),
|
|
],
|
|
),
|
|
]
|