-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMETA.json
41 lines (40 loc) · 1.18 KB
/
META.json
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
{
"name": "ajbool",
"abstract": "Three valued boolean with pseudo-NULL for primary keys",
"version": "0.0.3",
"maintainer" : [
"adjustgmbh"
],
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
},
"provides": {
"ajbool": {
"file": "sql/ajbool.sql",
"version": "0.0.3",
"abstract": "Three-valued boolean with pseudo-NULL for primary keys"
}
},
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"description": "There are times you want a boolean value for a primary key but you want NULL/Unknown to be a single, distinct value. The ajbool extension does this by marking unknown as a not null state for the purpose of this data type (but casts to bool as a true null).",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "10.0.0"
}
}
},
"resources": {
"bugtracker": {
"web": "http://github.com/adjust/ajbool/issues"
},
"repository": {
"url": "git://github.com/adjust/ajbool.git",
"web": "http://github.com/adjust/ajbool",
"type": "git"
}
}
}