Skip to content

Commit

Permalink
Make direct export for QBO GA
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 committed Nov 29, 2023
1 parent 4485e5b commit 8eaf6c3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions apps/integrations/migrations/0003_auto_20231129_0557.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.14 on 2023-11-29 05:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('integrations', '0002_auto_20230829_1425'),
]

operations = [
migrations.AlterField(
model_name='integration',
name='is_beta',
field=models.BooleanField(default=True, help_text='Is Beta'),
),
]
2 changes: 1 addition & 1 deletion apps/integrations/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Integration(models.Model):
org_id = models.CharField(max_length=255, help_text='Org Id')
type = models.CharField(max_length=255, help_text='Type of Integration', choices=INTEGRATION_TYPE)
is_active = models.BooleanField(default=False, help_text='Is Integration Active')
is_beta = models.BooleanField(default=False, help_text='Is Beta')
is_beta = models.BooleanField(default=True, help_text='Is Beta')
connected_at = models.DateTimeField(auto_now_add=True, help_text='Connected at datetime')
disconnected_at = models.DateTimeField(null=True, help_text='Disconnected at datetime')
updated_at = models.DateTimeField(auto_now=True, help_text='Updated at datetime')
Expand Down

0 comments on commit 8eaf6c3

Please sign in to comment.