Remove gensym, inc and or from step files.
[jackhill/mal.git] / plpgsql / init.sql
1 -- ---------------------------------------------------------
2 -- init.sql
3
4 -- Drop pre-existing schemas
5 DROP SCHEMA IF EXISTS io, types, reader, printer, envs, core, mal CASCADE;
6
7 -- Drop and recreate extensions
8 DROP EXTENSION IF EXISTS hstore;
9 CREATE EXTENSION hstore;
10
11 DROP EXTENSION IF EXISTS dblink;
12 CREATE EXTENSION dblink;
13