8687.15.9
by Karl Fogel
Add the copyright header block to more files (everything under database/). |
1 |
-- Copyright 2009 Canonical Ltd. This software is licensed under the
|
2 |
-- GNU Affero General Public License version 3 (see the file LICENSE).
|
|
1102
by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs |
3 |
|
4 |
-- Packaging
|
|
5 |
INSERT INTO Packaging (sourcepackage, packaging, product) |
|
6 |
VALUES ((SELECT id FROM SourcePackage WHERE id = |
|
7 |
(SELECT id from SourcePackageName WHERE name = 'mozilla-firefox')), |
|
8 |
1, -- dbschema.Packaging.PRIME |
|
9 |
(SELECT id FROM Product WHERE name = 'firefox')); |
|
2457
by Canonical.com Patch Queue Manager
[r=lifeless] Launchpad Auto Build System User Interface Prototype (buildfarm UI) also minor fixes for buildd infrastructure, still needing mpt love. |
10 |
|
11 |
-- Builder
|
|
12 |
INSERT INTO Builder (processor, url, name, title, description, owner, |
|
13 |
builderok) |
|
14 |
VALUES ((SELECT id from processor where name = '386'), |
|
15 |
'http://localhost:8221/', |
|
16 |
'bob', 'Bob The builder', |
|
17 |
'The default build-slave', |
|
18 |
1, |
|
19 |
False); |
|
20 |
||
21 |
-- Buildqueue
|
|
22 |
INSERT INTO BuildQueue (build, builder, logtail, created, lastscore) |
|
23 |
VALUES (2, |
|
24 |
1, |
|
25 |
'Dummy sampledata entry, not processing', |
|
26 |
'2005-06-15 09:14:12.820778', |
|
27 |
1); |
|
2663
by Canonical.com Patch Queue Manager
[r=stevea] Landing NominatedArchIndep changes. |
28 |
|
29 |
||
30 |
-- Add Nominated Architecures (trust ids)
|
|
31 |
||
32 |
UPDATE DistroRelease set nominatedarchindep=1 where id=1; |
|
33 |
UPDATE DistroRelease set nominatedarchindep=6 where id=3; |