We've got a lot of packages in the DB that have long been removed from the Arch repos. These are still indexed, but won't clutter the package listing anymore. Also fixed an issue with packages.id numbers getting rather large because the indexer allocates a new ID for every package on every update.
3 lines
119 B
SQL
3 lines
119 B
SQL
ALTER TABLE packages
|
|
ALTER COLUMN category SET NOT NULL,
|
|
ADD COLUMN dead boolean NOT NULL DEFAULT FALSE;
|