企业版主题:web_enterprise
破解方式
# 进入psql
su - postgres -c "psql"
# 查看数据库库名
\l
#切换数据库
\c odoo
-- 查看表
\d
-- 查询参数
select * from ir_config_parameter;
-- 修改参数
update ir_config_parameter set value = '2099-02-22 01:44:14' where key = 'database.expiration_date';
update ir_config_parameter set value = 'renewal' where key = 'database.expiration_reason';
update ir_config_parameter set value = 'ggpbwc4gu5eg' where key = 'database.enterprise_code';
commit;
文章评论