SET statement_timeout = 0;
SET lock_timeout = 0;
-SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
$$;
+--
+-- Name: xid_to_int4(xid); Type: FUNCTION; Schema: public; Owner: -
+--
+
+CREATE FUNCTION public.xid_to_int4(t xid) RETURNS integer
+ LANGUAGE plpgsql STRICT
+ AS $$
+DECLARE
+ tl bigint;
+ ti int;
+BEGIN
+ tl := t;
+
+ IF tl >= 2147483648 THEN
+ tl := tl - 4294967296;
+ END IF;
+
+ ti := tl;
+
+ RETURN ti;
+END;
+$$;
+
+
SET default_tablespace = '';
SET default_with_oids = false;
home_lat double precision,
home_lon double precision,
home_zoom smallint DEFAULT 3,
- nearby integer DEFAULT 50,
pass_salt character varying,
email_valid boolean DEFAULT false NOT NULL,
new_email character varying,
('20190623093642'),
('20190702193519'),
('20190716173946'),
+('20191120140058'),
('21'),
('22'),
('23'),