summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--UPGRADING6
-rw-r--r--support/schema/aur-schema.sql2
2 files changed, 6 insertions, 2 deletions
diff --git a/UPGRADING b/UPGRADING
index da85a8dc..bf66cc93 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -7,6 +7,12 @@ From 1.8.2 to 1.9.0
1. Translation files are now gettext compatible and need to be compiled after
each AUR upgrade by running `make install` in the "po/" directory.
+2. Remove the "NewPkgNotify" column from the "Users" table:
+
+----
+ALTER TABLE Users DROP COLUMN NewPkgNotify;
+----
+
From 1.8.1 to 1.8.2
-------------------
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql
index 2326e765..e64ae82b 100644
--- a/support/schema/aur-schema.sql
+++ b/support/schema/aur-schema.sql
@@ -32,12 +32,10 @@ CREATE TABLE Users (
LangPreference VARCHAR(5) NOT NULL DEFAULT 'en',
IRCNick VARCHAR(32) NOT NULL DEFAULT '',
LastVoted BIGINT UNSIGNED NOT NULL DEFAULT 0,
- NewPkgNotify TINYINT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (ID),
UNIQUE (Username),
UNIQUE (Email),
INDEX (AccountTypeID),
- INDEX (NewPkgNotify),
FOREIGN KEY (AccountTypeID) REFERENCES AccountTypes(ID) ON DELETE NO ACTION
) ENGINE = InnoDB;
-- A default developer account for testing purposes