Skip to content

Commit

Permalink
Merge branch 'feature/eda-create-project-remove-rest' into eda/staging
Browse files Browse the repository at this point in the history
  • Loading branch information
zMardone committed Sep 21, 2023
2 parents ffea0aa + d9ae594 commit 8e3db85
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 30 deletions.
29 changes: 0 additions & 29 deletions connect/common/migrations/0081_auto_20230906_1408.py

This file was deleted.

34 changes: 34 additions & 0 deletions connect/common/migrations/0081_auto_20230921_1326.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by Django 3.2.20 on 2023-09-21 13:26

from django.db import migrations, models
import uuid


class Migration(migrations.Migration):

dependencies = [
('common', '0080_auto_20230824_1906'),
]

operations = [
migrations.AlterField(
model_name='project',
name='template_type',
field=models.CharField(blank=True, choices=[('support', 'support'), ('lead_capture', 'lead capture'), ('lead_capture+chatgpt', 'lead_capture+chatgpt'), ('omie_lead_capture', 'omie_lead_capture'), ('omie_financial', 'omie_financial'), ('omie_financial+chatgpt', 'omie_financial+chatgpt'), ('sac+chatgpt', 'sac+chatgpt')], help_text='Project template type', max_length=255, null=True, verbose_name='Template type'),
),
migrations.AlterField(
model_name='recentactivity',
name='action',
field=models.CharField(choices=[('INTEGRATE', 'Entity integrated'), ('TRAIN', 'Entity Trained'), ('UPDATE', 'Entity updated'), ('ADD', 'Add'), ('CREATE', 'Entity Created')], max_length=15),
),
migrations.AlterField(
model_name='templateproject',
name='classifier_uuid',
field=models.UUIDField(default=uuid.uuid4, null=True, verbose_name='UUID'),
),
migrations.AlterField(
model_name='templateproject',
name='flow_uuid',
field=models.UUIDField(default=uuid.uuid4, null=True, verbose_name='UUID'),
),
]
2 changes: 1 addition & 1 deletion connect/common/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ class Meta:
)
template_type = models.CharField(
verbose_name=_("Template type"),
max_length=30,
max_length=255,
choices=TEMPLATE_TYPES,
help_text=_("Project template type"),
null=True,
Expand Down

0 comments on commit 8e3db85

Please sign in to comment.