Update README.md
This commit is contained in:
parent
2bc89b66e8
commit
42fe111b70
16
README.md
16
README.md
|
@ -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;
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue