mirror of
https://github.com/google/nomulus.git
synced 2025-08-16 06:24:07 +02:00
Add MapUserType to support converstion between Map and hstore (#443)
This commit is contained in:
parent
cf0e8e1b26
commit
6aa7c19344
8 changed files with 293 additions and 40 deletions
|
@ -16,6 +16,20 @@ SET xmloption = content;
|
|||
SET client_min_messages = warning;
|
||||
SET row_security = off;
|
||||
|
||||
--
|
||||
-- Name: hstore; Type: EXTENSION; Schema: -; Owner: -
|
||||
--
|
||||
|
||||
CREATE EXTENSION IF NOT EXISTS hstore WITH SCHEMA public;
|
||||
|
||||
|
||||
--
|
||||
-- Name: EXTENSION hstore; Type: COMMENT; Schema: -; Owner: -
|
||||
--
|
||||
|
||||
COMMENT ON EXTENSION hstore IS 'data type for storing sets of (key, value) pairs';
|
||||
|
||||
|
||||
SET default_tablespace = '';
|
||||
|
||||
SET default_with_oids = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue