summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-10-13 06:05:13 +0200
committerDan McGee <dan@archlinux.org>2008-01-20 06:49:35 +0100
commit5e38e3d3d0eff20f8d46bad67c4944a6a1d92ea4 (patch)
treec23cb38182971c201a4f797bcf3f8fde43787be8 /support
parent0cda12132d5b28b3a10a27bcad56bc823116817b (diff)
downloadaur-5e38e3d3d0eff20f8d46bad67c4944a6a1d92ea4.tar.gz
aur-5e38e3d3d0eff20f8d46bad67c4944a6a1d92ea4.tar.xz
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.
Diffstat (limited to 'support')
-rw-r--r--support/schema/aur-schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql
index 7e3bf2d3..97828fce 100644
--- a/support/schema/aur-schema.sql
+++ b/support/schema/aur-schema.sql
@@ -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),