Skip to content
Snippets Groups Projects

Updated the changes set in 16.0.1.1.0

Merged aronabencherif.diatta@xcg.africa requested to merge topic/16.0/2023-01952 into branch/16.0
4 files
+ 10
2
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 2
1
@@ -45,7 +45,7 @@
@@ -45,7 +45,7 @@
)
)
message_count = fields.Integer(
message_count = fields.Integer(
string="Number of messages", compute="_compute_message_count"
string="Number of messages", compute="_compute_message_count", store=True
)
)
@api.depends("message_ids")
@api.depends("message_ids")
@@ -60,6 +60,7 @@
@@ -60,6 +60,7 @@
id serial primary key,
id serial primary key,
create_date timestamp without time zone DEFAULT (now() at time zone 'utc'),
create_date timestamp without time zone DEFAULT (now() at time zone 'utc'),
comment character varying not null,
comment character varying not null,
 
message_count int null,
uid uuid not null
uid uuid not null
)"""
)"""
)
)
Loading