Add odoo field migration
This commit is contained in:
parent
0c6a76ea71
commit
10fd7d2356
1 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
||||||
|
# Generated by Django 5.2.1 on 2025-06-15 16:16
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("core", "0004_billingentity_odoo_fields"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="organization",
|
||||||
|
name="odoo_sale_order_id",
|
||||||
|
field=models.IntegerField(
|
||||||
|
blank=True, null=True, verbose_name="Odoo Sale Order ID"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="organization",
|
||||||
|
name="odoo_sale_order_name",
|
||||||
|
field=models.CharField(
|
||||||
|
blank=True,
|
||||||
|
max_length=100,
|
||||||
|
null=True,
|
||||||
|
verbose_name="Odoo Sale Order Name",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue