-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
import setting bug fix and import of merchant (#89)
- Loading branch information
1 parent
75418bc
commit 1e4f678
Showing
9 changed files
with
63 additions
and
69 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
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
19 changes: 0 additions & 19 deletions
19
apps/workspaces/migrations/0003_alter_importsetting_workspace.py
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
apps/workspaces/migrations/0003_remove_advancedsetting_schedule_id_and_more.py
This file was deleted.
Oops, something went wrong.
45 changes: 45 additions & 0 deletions
45
...igrations/0003_rename_ccc_last_synced_at_workspace_credit_card_last_synced_at_and_more.py
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,45 @@ | ||
# Generated by Django 4.1.2 on 2023-11-17 21:06 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import sage_desktop_api.models.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('django_q', '0014_alter_ormq_id_alter_schedule_id'), | ||
('workspaces', '0002_sage300credential_importsetting_fylecredential_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='workspace', | ||
old_name='ccc_last_synced_at', | ||
new_name='credit_card_last_synced_at', | ||
), | ||
migrations.RenameField( | ||
model_name='workspace', | ||
old_name='last_synced_at', | ||
new_name='reimbursable_last_synced_at', | ||
), | ||
migrations.RemoveField( | ||
model_name='advancedsetting', | ||
name='schedule_id', | ||
), | ||
migrations.AddField( | ||
model_name='advancedsetting', | ||
name='schedule', | ||
field=models.OneToOneField(null=True, on_delete=django.db.models.deletion.PROTECT, to='django_q.schedule'), | ||
), | ||
migrations.AddField( | ||
model_name='advancedsetting', | ||
name='sync_sage_300_to_fyle_payments', | ||
field=sage_desktop_api.models.fields.BooleanFalseField(default=False, help_text='Sync sage 300 to fyle payments'), | ||
), | ||
migrations.AlterField( | ||
model_name='importsetting', | ||
name='workspace', | ||
field=models.OneToOneField(help_text='Reference to Workspace model', on_delete=django.db.models.deletion.PROTECT, related_name='import_settings', to='workspaces.workspace'), | ||
), | ||
] |
19 changes: 0 additions & 19 deletions
19
apps/workspaces/migrations/0004_advancedsetting_sync_sage_300_to_fyle_payments.py
This file was deleted.
Oops, something went wrong.
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