I want to remove _sql_constraints (database level).
For example in account_invoice.py there is a constraints on number field. Now I want to remove it.
Can anyone have idea how to deal with this?
Thank you.
I want to remove _sql_constraints (database level).
For example in account_invoice.py there is a constraints on number field. Now I want to remove it.
Can anyone have idea how to deal with this?
Thank you.
you could remove it using psql command. for example if you have the following constraint
_sql_constraints = [
('phone_company_unique', 'unique(type,phone)', 'The phone unique among companies!')
]
you could use:
ALTER TABLE res_partner DROP CONSTRAINT res_company_phone_company_unique;
Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!
Регистрация| Похожие посты | Ответы | Просмотры | Активность | |
|---|---|---|---|---|
|
2
мар. 15
|
12783 | |||
|
1
окт. 25
|
9219 | |||
|
0
дек. 24
|
13480 | |||
|
|
3
сент. 24
|
25467 | ||
|
5
дек. 24
|
58652 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.