-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMETA.json
More file actions
66 lines (66 loc) · 1.61 KB
/
META.json
File metadata and controls
66 lines (66 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "pg_ulid",
"abstract": "ULID (Universally Unique Lexicographically Sortable Identifier) data type for PostgreSQL",
"description": "Provides a native ULID data type with full operator support, indexing (B-tree and hash), and optimized sorting. ULIDs are 128-bit identifiers with embedded timestamps that are lexicographically sortable.",
"version": "0.1.0",
"license": "mit",
"release_status": "stable",
"provides": {
"pg_ulid": {
"abstract": "ULID data type with operators and functions",
"file": "pg_ulid--0.1.0.sql",
"docfile": "doc/ulid.md",
"version": "0.1.0"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "12.0"
},
"recommends": {
"PostgreSQL": "18.0"
}
},
"build": {
"requires": {
"PostgreSQL": "12.0"
}
},
"test": {
"requires": {
"PostgreSQL": "12.0"
}
}
},
"no_index": {
"directory": [
"test",
"out",
".github"
]
},
"resources": {
"bugtracker": {
"web": "https://github.com/dcbickfo/pg_ulid/issues"
},
"repository": {
"url": "https://github.com/dcbickfo/pg_ulid.git",
"web": "https://github.com/dcbickfo/pg_ulid",
"type": "git"
}
},
"generated_by": "David",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/spec/"
},
"tags": [
"ulid",
"identifier",
"uuid",
"sortable",
"timestamp",
"data type"
]
}