Skip to content

Commit

Permalink
Merge pull request #49 from weni-ai/feature/add-function-remove-initi…
Browse files Browse the repository at this point in the history
…al-flow

removing action_base_flow from integrated_feature
  • Loading branch information
barbosajackson authored Oct 3, 2024
2 parents d689be5 + f7604b4 commit f5e8d04
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 5.1.1 on 2024-10-03 21:06

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("features", "0011_feature_category_feature_disclaimer_and_more"),
]

operations = [
migrations.CreateModel(
name="Function",
fields=[],
options={
"proxy": True,
"indexes": [],
"constraints": [],
},
bases=("features.feature",),
),
migrations.RemoveField(
model_name="integratedfeature",
name="action_base_flow",
),
]
1 change: 0 additions & 1 deletion retail/features/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ class IntegratedFeature(models.Model):
)
globals_values = models.JSONField(null=True, default=dict, blank=True)
sectors = models.JSONField(null=True, default=dict, blank=True)
action_base_flow = models.CharField(null=True, blank=True, choices=None)
user = models.ForeignKey(
User, on_delete=models.CASCADE, related_name="integrated_features"
)
Expand Down

0 comments on commit f5e8d04

Please sign in to comment.