-
-
Save jms/9c2ae800e036b57c93e5adafb5de9554 to your computer and use it in GitHub Desktop.
Revisions
-
juike created this gist
Nov 21, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ UPDATE pg_database SET datallowconn = TRUE WHERE datname = 'template0'; \c template0 UPDATE pg_database SET datistemplate = FALSE WHERE datname = 'template1'; DROP DATABASE template1; CREATE DATABASE template1 WITH TEMPLATE = 'template0'; \c template1 UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template1'; UPDATE pg_database SET datallowconn = FALSE WHERE datname = 'template0';