PostgreSQL Anonymizer 3.2: securing masking jobs and preparing role migration
PostgreSQL Anonymizer 3.2 changes the context for masking jobs. Check the version, privileges, preconditions and recovery before migrating roles.
Topic
PostgreSQL Anonymizer 3.2 changes the context for masking jobs. Check the version, privileges, preconditions and recovery before migrating roles.
We are going to see how to exploit Jsonb field types from PostgreSQL in a generated interface of Sonata.We start with the assumption that you already master the basic concepts of Symfony, Sonata, and PostgreSQL.First, let's create a simple table in PostgreSQL that will contain a Jsonb field. CREATE SEQUENCE public.table1_id_seq; CREATE TABLE public.table1 ( id integer DEFAULT nextval('public.table1_id_seq'::regclass) NOT NULL, var1 character varying(250...