Skip to content

Commit

Permalink
Update pg_get_tabledef.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
pgdbvw committed Mar 8, 2020
1 parent 05bd320 commit 7eb6bc3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/pg_get_tabledef.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
CREATE OR REPLACE FUNCTION pgdbvw.pg_get_tabledef(schema_name text, table_name text)
create schema if not exists pgdbvw;
--
-- See for New version: https://github.com/ester41/pg_scripts
--
CREATE OR REPLACE FUNCTION pgdbvw.pg_get_tabledef(schema_name text, table_name text)
RETURNS text
LANGUAGE plpgsql
AS $function$
Expand Down

0 comments on commit 7eb6bc3

Please sign in to comment.