mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
23 lines
1 KiB
Text
Executable file
23 lines
1 KiB
Text
Executable file
pg_dump -O -U phpcompta -s ${DOMAIN}mod1|grep -v "COMMENT ON SCHEMA public IS 'Standard public schema';" |sed "/^--/d" > schema.sql
|
|
awk '/SEQUENCE/,/;/ { print $0;}' < schema.sql > sequence.sql
|
|
awk '/CREATE DOMAIN/,/;/ { print $0;}' < schema.sql > table.sql
|
|
awk '/CREATE TABLE/,/;/ { print $0;}' < schema.sql >> table.sql
|
|
awk '/CREATE VIEW/,/;/ { print $0;}' < schema.sql > view.sql
|
|
awk '/INDEX/,/;/ { print $0;}' < schema.sql > index.sql
|
|
(
|
|
echo " SET client_encoding = 'utf8';"
|
|
echo " SET check_function_bodies = false;"
|
|
echo " SET client_min_messages = warning;"
|
|
echo "SET search_path = public, pg_catalog;"
|
|
)> constraint.sql
|
|
|
|
|
|
awk '/ALTER TABLE/,/;/ { print $0;}' < schema.sql >> constraint.sql
|
|
awk '/CREATE FUNCTION/,/LANGUAGE/ { print $0;}' < schema.sql > function.sql
|
|
awk '/COMMENT/,/;/ {print $0;}' < schema.sql > comment.sql
|
|
|
|
sed -i -e "/ALTER TABLE.*/d" -e "/ADD CONSTRAINT/d" -e "/CREATE PROCEDURAL/d" schema.sql
|
|
|
|
grep setval schema.sql >> sequence.sql
|
|
pg_dump -O -U phpcompta -D -a -O ${DOMAIN}mod1 |sed "/^--/d" > data.sql
|
|
|