summaryrefslogtreecommitdiffstats
path: root/support/schema/aur-schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'support/schema/aur-schema.sql')
-rw-r--r--support/schema/aur-schema.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql
index 269612bd..cb5ea423 100644
--- a/support/schema/aur-schema.sql
+++ b/support/schema/aur-schema.sql
@@ -151,17 +151,6 @@ CREATE TABLE PackageVotes (
);
CREATE UNIQUE INDEX VoteUsersIDPackageID ON PackageVotes (UsersID, PackageID);
--- The individual files and their file system location.
---
-CREATE TABLE PackageContents (
- PackageID INTEGER UNSIGNED NOT NULL,
- FSPath CHAR(255) NOT NULL DEFAULT '',
- URLPath CHAR(255) NOT NULL DEFAULT '',
- FileSize BIGINT UNSIGNED NOT NULL default 0,
- INDEX (PackageID),
- FOREIGN KEY (PackageID) REFERENCES Packages(ID) ON DELETE CASCADE
-);
-
-- Record comments for packages
--
CREATE TABLE PackageComments (