1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
--- Debian Source Builder: Database Schema for PostgreSQL -*- sql -*-
---
--- Copyright © 2008-2009 Roger Leigh <rleigh@debian.org>
--- Copyright © 2008-2009 Marc 'HE' Brockschmidt <he@debian.org>
--- Copyright © 2008-2009 Adeodato Simó <adeodato@debian.org>
---
--- This program is free software: you can redistribute it and/or modify
--- it under the terms of the GNU General Public License as published by
--- the Free Software Foundation, either version 2 of the License, or
--- (at your option) any later version.
---
--- This program is distributed in the hope that it will be useful, but
--- WITHOUT ANY WARRANTY; without even the implied warranty of
--- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
--- General Public License for more details.
---
--- You should have received a copy of the GNU General Public License
--- along with this program. If not, see
--- <http://www.gnu.org/licenses/>.
CREATE TABLE architectures (
arch text
CONSTRAINT arch_pkey PRIMARY KEY
);
COMMENT ON TABLE architectures IS 'Architectures known by this wanna-build instance';
COMMENT ON COLUMN architectures.arch IS 'Architecture name';
CREATE TABLE suites (
suite text
CONSTRAINT suite_pkey PRIMARY KEY,
priority integer,
depwait boolean
DEFAULT 't',
hidden boolean
DEFAULT 'f'
);
COMMENT ON TABLE suites IS 'Valid suites';
COMMENT ON COLUMN suites.suite IS 'Suite name';
COMMENT ON COLUMN suites.priority IS 'Sorting order (lower is higher priority)';
COMMENT ON COLUMN suites.depwait IS 'Automatically wait on dependencies?';
COMMENT ON COLUMN suites.hidden IS 'Hide suite from public view (e.g. for -security)?';
CREATE TABLE suite_arches (
suite text
NOT NULL
CONSTRAINT suite_arches_suite_fkey REFERENCES suites(suite),
arch text
NOT NULL
CONSTRAINT suite_arches_arch_fkey REFERENCES architectures(arch),
CONSTRAINT suite_arches_pkey PRIMARY KEY (suite, arch)
);
COMMENT ON TABLE suite_arches IS 'List of architectures in each suite';
COMMENT ON COLUMN suite_arches.suite IS 'Suite name';
COMMENT ON COLUMN suite_arches.arch IS 'Architecture name';
CREATE TABLE components (
component text
CONSTRAINT component_pkey PRIMARY KEY
);
COMMENT ON TABLE components IS 'Valid archive components';
COMMENT ON COLUMN components.component IS 'Component name';
CREATE TABLE package_types (
type text
CONSTRAINT pkg_tpe_pkey PRIMARY KEY
);
COMMENT ON TABLE package_types IS 'Valid types for binary packages';
COMMENT ON COLUMN package_types.type IS 'Type name';
CREATE TABLE package_architectures (
arch text
CONSTRAINT pkg_arch_pkey PRIMARY KEY
);
COMMENT ON TABLE package_architectures IS 'Possible values for the Architecture field';
COMMENT ON COLUMN package_architectures.arch IS 'Architecture name';
CREATE TABLE package_priorities (
pkg_prio text
CONSTRAINT pkg_pri_pkey PRIMARY KEY,
prio_val integer
DEFAULT 0
);
COMMENT ON TABLE package_priorities IS 'Valid package priorities';
COMMENT ON COLUMN package_priorities.pkg_prio IS 'Priority name';
COMMENT ON COLUMN package_priorities.prio_val IS 'Integer value for sorting priorities';
CREATE TABLE package_sections (
section text
CONSTRAINT pkg_sect_pkey PRIMARY KEY
);
COMMENT ON TABLE package_sections IS 'Valid package sections';
COMMENT ON COLUMN package_sections.section IS 'Section name';
CREATE TABLE sources (
source text
NOT NULL,
source_version debversion
NOT NULL,
component text
CONSTRAINT source_comp_fkey REFERENCES components(component)
ON DELETE CASCADE
NOT NULL,
section text
CONSTRAINT source_section_fkey REFERENCES package_sections(section)
NOT NULL,
pkg_prio text
CONSTRAINT source_pkg_prio_fkey REFERENCES package_priorities(pkg_prio)
NOT NULL,
maintainer text NOT NULL,
build_dep text,
build_dep_indep text,
build_confl text,
build_confl_indep text,
stdver text,
CONSTRAINT sources_pkey PRIMARY KEY (source, source_version)
);
CREATE INDEX sources_pkg_idx ON sources (source);
COMMENT ON TABLE sources IS 'Source packages common to all architectures (from Sources)';
COMMENT ON COLUMN sources.source IS 'Package name';
COMMENT ON COLUMN sources.source_version IS 'Package version number';
COMMENT ON COLUMN sources.component IS 'Archive component';
COMMENT ON COLUMN sources.section IS 'Package section';
COMMENT ON COLUMN sources.pkg_prio IS 'Package priority';
COMMENT ON COLUMN sources.maintainer IS 'Package maintainer name';
COMMENT ON COLUMN sources.build_dep IS 'Package build dependencies (architecture dependent)';
COMMENT ON COLUMN sources.build_dep_indep IS 'Package build dependencies (architecture independent)';
COMMENT ON COLUMN sources.build_confl IS 'Package build conflicts (architecture dependent)';
COMMENT ON COLUMN sources.build_confl_indep IS 'Package build conflicts (architecture independent)';
COMMENT ON COLUMN sources.stdver IS 'Debian Standards (policy) version number';
CREATE TABLE source_architectures (
source text
NOT NULL,
source_version debversion
NOT NULL,
arch text
CONSTRAINT source_arch_arch_fkey
REFERENCES package_architectures(arch)
ON DELETE CASCADE
NOT NULL,
UNIQUE (source, source_version, arch),
CONSTRAINT source_arch_source_fkey FOREIGN KEY (source, source_version)
REFERENCES sources (source, source_version)
ON DELETE CASCADE
);
COMMENT ON TABLE source_architectures IS 'Source package architectures (from Sources)';
COMMENT ON COLUMN source_architectures.source IS 'Package name';
COMMENT ON COLUMN source_architectures.source_version IS 'Package version number';
COMMENT ON COLUMN source_architectures.arch IS 'Architecture name';
CREATE TABLE uploaders (
source text
NOT NULL,
source_version debversion
NOT NULL,
uploader text
NOT NULL,
UNIQUE (source, source_version, uploader),
CONSTRAINT uploader_source_fkey FOREIGN KEY (source, source_version)
REFERENCES sources (source, source_version)
ON DELETE CASCADE
);
COMMENT ON TABLE uploaders IS 'Uploader names for source packages';
COMMENT ON COLUMN uploaders.source IS 'Package name';
COMMENT ON COLUMN uploaders.source_version IS 'Package version number';
COMMENT ON COLUMN uploaders.uploader IS 'Uploader name and address';
CREATE TABLE binaries (
-- PostgreSQL won't allow "binary" as column name
package text NOT NULL,
version debversion NOT NULL,
arch text
CONSTRAINT bin_arch_fkey REFERENCES package_architectures(arch)
ON DELETE CASCADE
NOT NULL,
source text
NOT NULL,
source_version debversion
NOT NULL,
section text
CONSTRAINT bin_section_fkey REFERENCES package_sections(section)
NOT NULL,
type text
CONSTRAINT bin_pkg_type_fkey REFERENCES package_types(type)
NOT NULL,
pkg_prio text
CONSTRAINT bin_pkg_prio_fkey REFERENCES package_priorities(pkg_prio)
NOT NULL,
CONSTRAINT bin_pkey PRIMARY KEY (package, version, arch),
CONSTRAINT bin_src_fkey FOREIGN KEY (source, source_version)
REFERENCES sources (source, source_version)
ON DELETE CASCADE
);
COMMENT ON TABLE binaries IS 'Binary packages specific to single architectures (from Packages)';
COMMENT ON COLUMN binaries.package IS 'Binary package name';
COMMENT ON COLUMN binaries.version IS 'Binary package version number';
COMMENT ON COLUMN binaries.arch IS 'Architecture name';
COMMENT ON COLUMN binaries.source IS 'Source package name';
COMMENT ON COLUMN binaries.source_version IS 'Source package version number';
COMMENT ON COLUMN binaries.section IS 'Package section';
COMMENT ON COLUMN binaries.pkg_prio IS 'Package priority';
CREATE TABLE suite_sources (
source text
NOT NULL,
source_version debversion
NOT NULL,
suite text
CONSTRAINT suite_sources_suite_fkey REFERENCES suites(suite)
ON DELETE CASCADE
NOT NULL,
CONSTRAINT suite_sources_pkey PRIMARY KEY (source, suite),
CONSTRAINT suite_sources_src_fkey FOREIGN KEY (source, source_version)
REFERENCES sources (source, source_version)
ON DELETE CASCADE
);
CREATE INDEX suite_sources_src_ver_idx ON suite_sources (source, source_version);
COMMENT ON TABLE suite_sources IS 'Source packages contained within a suite';
COMMENT ON COLUMN suite_sources.source IS 'Source package name';
COMMENT ON COLUMN suite_sources.source_version IS 'Source package version number';
COMMENT ON COLUMN suite_sources.suite IS 'Suite name';
CREATE TABLE suite_binaries (
package text
NOT NULL,
version debversion
NOT NULL,
arch text
CONSTRAINT suite_bin_arch_fkey REFERENCES package_architectures(arch)
ON DELETE CASCADE
NOT NULL,
suite text
CONSTRAINT suite_bin_suite_fkey REFERENCES suites(suite)
ON DELETE CASCADE
NOT NULL,
CONSTRAINT suite_bin_pkey PRIMARY KEY (package, arch, suite),
CONSTRAINT suite_bin_bin_fkey FOREIGN KEY (package, version, arch)
REFERENCES binaries (package, version, arch)
ON DELETE CASCADE,
CONSTRAINT suite_bin_suite_arch_fkey FOREIGN KEY (suite, arch)
REFERENCES suite_arches (suite, arch)
ON DELETE CASCADE
);
CREATE INDEX suite_binaries_pkg_ver_idx ON suite_binaries (package, version);
COMMENT ON TABLE suite_binaries IS 'Binary packages contained within a suite';
COMMENT ON COLUMN suite_binaries.package IS 'Binary package name';
COMMENT ON COLUMN suite_binaries.version IS 'Binary package version number';
COMMENT ON COLUMN suite_binaries.arch IS 'Architecture name';
COMMENT ON COLUMN suite_binaries.suite IS 'Suite name';
|