/* DROP and then CREATE the 'public.blocked_instance' Table */ DROP TABLE IF EXISTS blocked_instance; CREATE TABLE IF NOT EXISTS blocked_instance ( host VARCHAR (256) PRIMARY KEY NOT NULL, reason VARCHAR (1024), imported BOOLEAN DEFAULT FALSE );