├── LICENSE ├── README.md └── src ├── 0_create_hashids_schema.sql ├── 1_create_hashids_constent_shuffle.sql ├── 2_create_hashids_setup_seps.sql ├── 3_create_hashids_setup_alphabet.sql ├── 4_create_hashids_hash.sql ├── 5_create_hashids_unhash.sql ├── 6_create_hashids_encode_list.sql ├── 7_create_hashids_encode.sql ├── 8_create_hashids_decode.sql └── all_hashids.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/README.md -------------------------------------------------------------------------------- /src/0_create_hashids_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/0_create_hashids_schema.sql -------------------------------------------------------------------------------- /src/1_create_hashids_constent_shuffle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/1_create_hashids_constent_shuffle.sql -------------------------------------------------------------------------------- /src/2_create_hashids_setup_seps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/2_create_hashids_setup_seps.sql -------------------------------------------------------------------------------- /src/3_create_hashids_setup_alphabet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/3_create_hashids_setup_alphabet.sql -------------------------------------------------------------------------------- /src/4_create_hashids_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/4_create_hashids_hash.sql -------------------------------------------------------------------------------- /src/5_create_hashids_unhash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/5_create_hashids_unhash.sql -------------------------------------------------------------------------------- /src/6_create_hashids_encode_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/6_create_hashids_encode_list.sql -------------------------------------------------------------------------------- /src/7_create_hashids_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/7_create_hashids_encode.sql -------------------------------------------------------------------------------- /src/8_create_hashids_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/8_create_hashids_decode.sql -------------------------------------------------------------------------------- /src/all_hashids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/array-analytics/plpg_hashids/HEAD/src/all_hashids.sql --------------------------------------------------------------------------------