diff options
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,10 +1,12 @@ CREATE TABLE package ( -- binary Debian packages id INTEGER PRIMARY KEY, - name TEXT UNIQUE NOT NULL, + name TEXT NOT NULL, -- binary package name version TEXT, -- Debian version architecture TEXT, - source TEXT); -- name of the source package it was built from + source TEXT, -- name of the source package it was built from + multiarch TEXT, -- value of the Multi-Arch field + UNIQUE (name, architecture)); CREATE TABLE content ( -- a file contained in a binary package id INTEGER PRIMARY KEY, |