@pgpm/inflection 0.19.0 → 0.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@
5
5
  BEGIN;
6
6
 
7
7
  CREATE TABLE inflection.inflection_rules (
8
- id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
8
+ id uuid PRIMARY KEY DEFAULT uuidv7(),
9
9
  type text, -- singular, plural
10
10
  test text,
11
11
  replacement text
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/inflection",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "description": "String inflection utilities for PostgreSQL naming conventions",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "contributors": [
@@ -21,7 +21,7 @@
21
21
  "test:watch": "jest --watch"
22
22
  },
23
23
  "dependencies": {
24
- "@pgpm/verify": "0.19.0"
24
+ "@pgpm/verify": "0.19.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "pgpm": "^4.2.3"
@@ -34,5 +34,5 @@
34
34
  "bugs": {
35
35
  "url": "https://github.com/constructive-io/pgpm-modules/issues"
36
36
  },
37
- "gitHead": "83be2dd4b07831c8c4f903437d20d350a673d19b"
37
+ "gitHead": "874490c55094ce0232bf230c613ee58685f369dc"
38
38
  }
@@ -1,8 +1,8 @@
1
1
  # pgpm-inflection extension
2
2
  comment = 'pgpm-inflection extension'
3
- default_version = '0.15.3'
3
+ default_version = '0.15.5'
4
4
  module_pathname = '$libdir/pgpm-inflection'
5
- requires = 'plpgsql,unaccent,uuid-ossp,pgpm-verify'
5
+ requires = 'plpgsql,unaccent,pgpm-verify'
6
6
  relocatable = false
7
7
  superuser = false
8
8