[aur-dev] [PATCH 1/3] Add database column DeletionProposed to Packages table, indicating whether or not the package is currently proposed for deletion.

Peter Lewis pete at muddygoat.org
Sat Sep 11 11:20:46 EDT 2010


---
 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 250d405..8d49e15 100644
--- a/support/schema/aur-schema.sql
+++ b/support/schema/aur-schema.sql
@@ -120,6 +120,7 @@ CREATE TABLE Packages (
 	LocationID TINYINT UNSIGNED NOT NULL DEFAULT 1,
 	NumVotes INTEGER UNSIGNED NOT NULL DEFAULT 0,
 	OutOfDate TINYINT UNSIGNED DEFAULT 0,
+	DeletionProposed TINYINT UNSIGNED DEFAULT 0,
 	SubmittedTS BIGINT UNSIGNED NOT NULL,
 	ModifiedTS BIGINT UNSIGNED NOT NULL,
 	SubmitterUID INTEGER UNSIGNED NOT NULL DEFAULT 0,     -- who submitted it?
-- 
1.7.2.3



More information about the aur-dev mailing list