diff options
author | eliott <eliott@cactuswax.net> | 2007-11-17 00:01:58 -0800 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-20 00:21:18 -0600 |
commit | a9837329d697a9e18401309a1496cc3b5015bc6a (patch) | |
tree | 30bd36b85241d923958b242839de0f8202856042 /support | |
parent | 6dbe12264ac0998ac4b69a507c0b7c1b55c03c1f (diff) | |
download | aurweb-a9837329d697a9e18401309a1496cc3b5015bc6a.tar.xz |
Hand diff of simo's patch to remove flag safe functionality.
Simo's original commit text:
The idea of safe flagging is unclear, poorly named, misunderstood,
and not even used. At the time this patch was created, less than
a third of the packages in unsupported were flagged safe, and less
than a tenth of users knew how to interpret it.
The safe flag has been replaced by a disclaimer on the main page.
Diffstat (limited to 'support')
-rw-r--r-- | support/schema/aur-schema.sql | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index 97828fc..c1697f9 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -123,8 +123,6 @@ CREATE TABLE Packages ( SubmitterUID INTEGER UNSIGNED NOT NULL DEFAULT 0, -- who submitted it? MaintainerUID INTEGER UNSIGNED NOT NULL DEFAULT 0, -- User 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), |