-
Notifications
You must be signed in to change notification settings - Fork 5
/
META.json.in
53 lines (52 loc) · 1.73 KB
/
META.json.in
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
{
"name": "table_version",
"abstract": "PostgreSQL table versioning extension, recording row modifications and its history",
"description": "PostgreSQL table versioning extension, recording row modifications and its history. The extension provides APIs for accessing snapshots of a table at certain revisions and the difference generated between any two given revisions. The extension uses a PL/PgSQL trigger based system to record and provide access to the row revisions",
"version": "@@VERSION@@",
"maintainer": "[email protected]",
"license": "bsd",
"provides": {
"table_versions": {
"abstract": "PostgreSQL table versioning extension, recording row modifications and its history",
"file": "sql/table_version.sql",
"docfile": "doc/table_version.md",
"version": "@@VERSION@@"
}
},
"prereqs": {
"runtime": {
"requires": {
"plpgsql": 0,
"PostgreSQL": "9.1.0"
}
},
"test": {
"recommends": {
"pgTAP": 0
}
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/linz/postgresql-tableversion/issues/"
},
"repository": {
"url": "git://github.com/linz/postgresql-tableversion.git",
"web": "https://github.com/linz/postgresql-tableversion/",
"type": "git"
}
},
"release_status": "stable",
"generated_by": "Jeremy Palmer",
"tags": [
"table",
"version",
"diff",
"history",
"revision"
],
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
}
}