From b06550e69e4927c720befc87ea254e739ed52a80 Mon Sep 17 00:00:00 2001 From: AjmalCybro Date: Tue, 24 Jan 2023 12:54:36 +0530 Subject: [PATCH] Jan 24 [UPDT] : Field attribute update --- auto_database_backup/__manifest__.py | 2 +- auto_database_backup/models/db_backup_configure.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_database_backup/__manifest__.py b/auto_database_backup/__manifest__.py index bdd8d7f4d..200d4dd66 100644 --- a/auto_database_backup/__manifest__.py +++ b/auto_database_backup/__manifest__.py @@ -22,7 +22,7 @@ { 'name': "Automatic Database Backup To Local Server, Remote Server, Google Drive And Dropbox", - 'version': '15.0.3.1.1', + 'version': '15.0.3.1.2', 'summary': """Generate automatic backup of databases and store to local, google drive, dropbox, onedrive or remote server""", 'description': """This module has been developed for creating database backups automatically and store it to the different locations.""", diff --git a/auto_database_backup/models/db_backup_configure.py b/auto_database_backup/models/db_backup_configure.py index 7cc6e61a9..be6896a93 100644 --- a/auto_database_backup/models/db_backup_configure.py +++ b/auto_database_backup/models/db_backup_configure.py @@ -96,7 +96,7 @@ class AutoDatabaseBackup(models.Model): backup_filename = fields.Char(string='Backup Filename', help='For Storing generated backup filename') generated_exception = fields.Char(string='Exception', help='Exception Encountered while Backup generation') onedrive_client_id = fields.Char(string='Onedrive Client ID', copy=False) - onedrive_client_secret = fields.Char(string='Onedrive Client Secret', compy=False) + onedrive_client_secret = fields.Char(string='Onedrive Client Secret', copy=False) onedrive_access_token = fields.Char(string='Onedrive Access Token', copy=False) onedrive_refresh_token = fields.Char(string='Onedrive Refresh Token', copy=False) onedrive_token_validity = fields.Datetime(string='Onedrive Token Validity', copy=False)