Browse Source

Jan 24 [UPDT] : Field attribute update

pull/232/head
AjmalCybro 2 years ago
parent
commit
b06550e69e
  1. 2
      auto_database_backup/__manifest__.py
  2. 2
      auto_database_backup/models/db_backup_configure.py

2
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.""",

2
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)

Loading…
Cancel
Save