PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como aplicar o recurso PostgreSQL UNLOGGED a uma tabela existente?


PostgreSQL 9.5+ permite definir uma tabela existente como LOGGED / NÃO LOGADO com o ALTER TABLE comando... detalhado melhor aqui .
For e.g. 
ALTER TABLE table_test SET LOGGED;
ALTER TABLE table_test SET UNLOGGED;