diff options
author | eliott <eliott@cactuswax.net> | 2007-10-12 21:05:13 -0700 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-19 23:49:35 -0600 |
commit | 5e38e3d3d0eff20f8d46bad67c4944a6a1d92ea4 (patch) | |
tree | c23cb38182971c201a4f797bcf3f8fde43787be8 /support/schema | |
parent | 0cda12132d5b28b3a10a27bcad56bc823116817b (diff) |
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/schema')
-rw-r--r-- | support/schema/aur-schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index 7e3bf2d..97828fc 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), |