-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_begin.sql
More file actions
31 lines (25 loc) · 855 Bytes
/
_begin.sql
File metadata and controls
31 lines (25 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
------------------------------------------------------------------------------
-- INIT
------------------------------------------------------------------------------
/*
\unset ECHO
\set QUIET 1
\pset format unaligned
\pset tuples_only true
\pset pager off
\set ON_ERROR_ROLLBACK 1
\set ON_ERROR_STOP true
*/
create extension if not exists hstore schema public;
-- NOTE: disabled for compatibility
-- create extension if not exists "pg_uuidv7" schema public;
create extension if not exists "uuid-ossp" schema public;
create extension if not exists pgcrypto schema public;
-- reset stats
-- NOTE: disabled for compatibility
-- create extension if not exists pg_stat_statements schema public;
-- select public.pg_stat_statements_reset();
-- meta is installed directly by run.sh, not as an extension
begin;
create schema bundle;
set search_path=bundle;