Added AurJSON code.

Added a JSON interface to the aur. This should make it easier for developers to integrate
command line utilities and poll against the AUR itself.
This commit is contained in:
eliott 2007-10-12 21:05:13 -07:00 committed by Dan McGee
parent 0cda12132d
commit 5e38e3d3d0
3 changed files with 168 additions and 0 deletions

View file

@ -125,6 +125,7 @@ CREATE TABLE Packages (
AURMaintainerUID INTEGER UNSIGNED NOT NULL DEFAULT 0, -- TU/Dev
Safe TINYINT UNSIGNED NOT NULL DEFAULT 0, -- verified to be safe?
VerifiedBy INTEGER UNSIGNED NOT NULL DEFAULT 0, -- who verified?
FULLTEXT (Name,Description),
PRIMARY KEY (ID),
UNIQUE (Name),
INDEX (CategoryID),