My database of Odoo have multiple websites. I need to delete one of this website with postgres.
Can I do this :
DROP the_name_of_the_website IF EXISTS
My database of Odoo have multiple websites. I need to delete one of this website with postgres.
Can I do this :
DROP the_name_of_the_website IF EXISTS
Julie Losange
This thing you can do by the Odoo UI
, If you activate the developer mode you can see
Website -> Configuration -> Websites
from here you can choose the website and delete
it.
And On Postgres
:
delete from website where id=YOUR WEBSITE ID;
DROP DATABASE [ IF EXISTS ] name
is the correct syntax, so
DROP DATABASE IF EXISTS the_name_of_the_website
in your case.