Revision 10882
Added by Aaron Marcuse-Kubitza over 11 years ago
common.Makefile | ||
---|---|---|
92 | 92 |
psqlOpts := --set ON_ERROR_STOP=1 --quiet |
93 | 93 |
psqlAsAdmin := $(asAdmin) psql -U postgres $(psqlOpts) |
94 | 94 |
# -E preserves env vars so PGOPTIONS is passed to psql |
95 |
mkSchemaCmd = 'CREATE SCHEMA $(1);'
|
|
95 |
mkSchemaCmd = 'CREATE SCHEMA "$(1)";'
|
|
96 | 96 |
rmSchemaCmd = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;' |
97 | 97 |
|
98 | 98 |
##### General targets |
Also available in: Unified diff
bugfix: schemas/Makefile, lib/common.Makefile: enclose schema names in "" so that they won't be lowercased