Yurttas/PL/DBL/postgres/F/01/Bank/c-all.sql
1/*
2REM
3REM c-all.sql
4REM
5REM Create Bank database and its tables.
6REM
7*/
8
9SELECT current_schema();
10SET search_path to "bank";
11
12\i Branch-cre.sql
13
14\i Customer-cre.sql
15
16\i Depositor-cre.sql
17
18\i Borrower-cre.sql
19
20\i Client-cre.sql