From 42fe111b70d453f1c98b80fc36609cf627b457a0 Mon Sep 17 00:00:00 2001 From: Yorick de Wid Date: Sat, 24 Oct 2020 23:45:54 +0200 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 03969ba..a0d7a71 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,19 @@ the `::iban` datatype can be cast to an text to perform string operations ```sql SELECT 'KZ86125KZT5004100100'::iban::text; ``` + +## Build + +Make sure PostgreSQL development tools are installed (check `pg_config`) + +``` +git clone https://github.com/yorickdewid/PostgreSQL-IBAN +cd PostgreSQL-IBAN +make install +``` + +Login to the database and load the extension + +``` +CREATE EXTENSION iban; +```