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
|
--- 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/>.
INSERT INTO architectures (arch) VALUES
('alpha'),
('amd64'),
('arm'),
('armel'),
('hppa'),
('hurd-i386'),
('i386'),
('ia64'),
('m68k'),
('mips'),
('mipsel'),
('powerpc'),
('s390'),
('sparc');
INSERT INTO suites (suite, priority) VALUES
('oldstable', 1),
('stable', 1),
('testing', 2),
('unstable', 3),
('experimental', 4);
INSERT INTO suites (suite, priority, depwait, hidden) VALUES
('oldstable-security', 1, 'f', 't'),
('stable-security', 1, 'f', 't'),
('testing-security', 2, 'f', 't');
INSERT INTO suite_arches (suite, arch) VALUES
('oldstable', 'alpha'),
('oldstable', 'amd64'),
('oldstable', 'arm'),
('oldstable', 'hppa'),
('oldstable', 'i386'),
('oldstable', 'ia64'),
('oldstable', 'mips'),
('oldstable', 'mipsel'),
('oldstable', 'powerpc'),
('oldstable', 's390'),
('oldstable', 'sparc'),
('stable', 'alpha'),
('stable', 'amd64'),
('stable', 'arm'),
('stable', 'armel'),
('stable', 'hppa'),
('stable', 'i386'),
('stable', 'ia64'),
('stable', 'mips'),
('stable', 'mipsel'),
('stable', 'powerpc'),
('stable', 's390'),
('stable', 'sparc'),
('testing', 'alpha'),
('testing', 'amd64'),
('testing', 'armel'),
('testing', 'hppa'),
('testing', 'i386'),
('testing', 'ia64'),
('testing', 'mips'),
('testing', 'mipsel'),
('testing', 'powerpc'),
('testing', 's390'),
('testing', 'sparc'),
('unstable', 'alpha'),
('unstable', 'amd64'),
('unstable', 'armel'),
('unstable', 'hppa'),
('unstable', 'i386'),
('unstable', 'ia64'),
('unstable', 'mips'),
('unstable', 'mipsel'),
('unstable', 'powerpc'),
('unstable', 's390'),
('unstable', 'sparc'),
('experimental', 'alpha'),
('experimental', 'amd64'),
('experimental', 'armel'),
('experimental', 'hppa'),
('experimental', 'i386'),
('experimental', 'ia64'),
('experimental', 'mips'),
('experimental', 'mipsel'),
('experimental', 'powerpc'),
('experimental', 's390'),
('experimental', 'sparc');
INSERT INTO components (component) VALUES
('main'),
('contrib'),
('non-free');
INSERT INTO package_types (type) VALUES
('deb'),
('udeb');
INSERT INTO package_priorities (pkg_prio, prio_val) VALUES
('required', 1),
('standard', 2),
('important', 3),
('optional', 4),
('extra', 5);
|