-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding show_chat_help field on Organization serializer
- Loading branch information
1 parent
2691cd0
commit 9c98888
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.2.23 on 2024-08-28 19:10 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('common', '0084_auto_20240710_1828'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='organization', | ||
name='config', | ||
field=models.JSONField(default=dict), | ||
), | ||
migrations.AlterField( | ||
model_name='recentactivity', | ||
name='action', | ||
field=models.CharField(choices=[('ADD', 'Add'), ('TRAIN', 'Entity Trained'), ('DELETE', 'Entity Deleted'), ('CREATE', 'Entity Created'), ('INTEGRATE', 'Entity integrated'), ('UPDATE', 'Entity updated')], max_length=15), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters