You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To allow to run postgress in docker we cannot make any maintenance on
database from outside the docker anymore, meaning that the database
creations needs to be done in the docker.
custom_db_name=fields.Char('Custom Db Name', tracking=True)# future
431
+
create_db=fields.Boolean('Create Db', default=True, tracking=True) # TODO remove
432
+
custom_db_name=fields.Char('Custom Db Name', tracking=True)
433
433
install_modules=fields.Char('Modules to install', help="List of module patterns to install, use * to install all available modules, prefix the pattern with dash to remove the module.", default='', tracking=True)
0 commit comments