main flow checked
This commit is contained in:
parent
b5bf3a5dbe
commit
f853ad9784
21 changed files with 365 additions and 89 deletions
35
wells/migrations/0005_alter_historicalwell_utm_x_and_more.py
Normal file
35
wells/migrations/0005_alter_historicalwell_utm_x_and_more.py
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Generated by Django 5.2.4 on 2025-10-02 09:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wells', '0004_remove_historicalwell_discharge_pipe_diameter_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='historicalwell',
|
||||
name='utm_x',
|
||||
field=models.DecimalField(decimal_places=0, default=11, max_digits=10, verbose_name='X UTM'),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='historicalwell',
|
||||
name='utm_y',
|
||||
field=models.DecimalField(decimal_places=0, default=2, max_digits=10, verbose_name='Y UTM'),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='well',
|
||||
name='utm_x',
|
||||
field=models.DecimalField(decimal_places=0, max_digits=10, verbose_name='X UTM'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='well',
|
||||
name='utm_y',
|
||||
field=models.DecimalField(decimal_places=0, max_digits=10, verbose_name='Y UTM'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue