-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding META.josn and editing the description in the control file * META fixes
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "device_type", | ||
"abstract": "Enumerable type for mobile device types", | ||
"version": "0.0.1", | ||
"maintainer": [ "Chris Travers <christravers@adjust.com>", "Manuel Kniep <rapimo@adjust.com>" ], | ||
"license": { | ||
"PostgreSQL": "http://www.postgresql.org/about/licence" | ||
}, | ||
"provides": { | ||
"device_type": { | ||
"file": "sql/device_type.sql", | ||
"version": "0.0.1", | ||
"abstract": "Enumerable mobile device type. Stored in one byte." | ||
} | ||
}, | ||
"meta-spec": { | ||
"version": "1.0.0", | ||
"url": "http://pgxn.org/meta/spec.txt" | ||
}, | ||
"description": "This extnesion offers a one-byte storage type that works as an enum for mobile device types.", | ||
"prereqs": { | ||
"runtime": { | ||
"requires": { | ||
"PostgreSQL": "9.3.0" | ||
} | ||
} | ||
}, | ||
"resources": { | ||
"bugtracker": { | ||
"web": "http://github.com/adjust/pg-device_type/issues" | ||
}, | ||
"repository": { | ||
"url": "git://github.com/adjust/pg-device_type.git", | ||
"web": "http://github.com/adjust/pg-device_type", | ||
"type": "git" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# device_type extension | ||
comment = 'my awesome extension' | ||
comment = 'An emum type for mobile device types' | ||
default_version = '0.0.1' | ||
relocatable = true | ||
requires = '' |