Update README.md

This commit is contained in:
Yorick de Wid 2020-10-24 23:45:54 +02:00 committed by GitHub
parent 2bc89b66e8
commit 42fe111b70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -37,3 +37,19 @@ the `::iban` datatype can be cast to an text to perform string operations
```sql ```sql
SELECT 'KZ86125KZT5004100100'::iban::text; 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;
```