~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schemas.sql

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2004-07-16 11:51:46 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:rocketfuel@canonical.com%soyuz--devel--0--patch-28
Added database schemas and scripts.
Patches applied:

 * mark.shuttleworth@canonical.com/soyuz--devel--0--base-0
   tag of rocketfuel@canonical.com/soyuz--devel--0--patch-26

 * mark.shuttleworth@canonical.com/soyuz--devel--0--patch-1
   Setup database definition scripts

 * mark.shuttleworth@canonical.com/soyuz--devel--0--patch-2
   Try to add files for real this time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Schemas
 
3
*/
 
4
 
 
5
 
 
6
 
 
7
/*
 
8
  1. Manifest Entry Types
 
9
*/
 
10
INSERT INTO Schema ( name, title, description, owner ) VALUES ( 'manifestentrytype', 'Manifest Entry Type', 'A set of types of manifest entries.', 5 );
 
11
INSERT INTO Label ( schema, name, title, description ) VALUES ( 1, 'tar', 'Tar File', 'A Tar File' );
 
12
INSERT INTO Label ( schema, name, title, description ) VALUES ( 1, 'patch', 'Patch File', 'A Patch File' );
 
13
INSERT INTO Label ( schema, name, title, description ) VALUES ( 1, 'copy', 'Copied Source', 'Source checked out from an archive and copied into the source package without being tarred or diffed.' );
 
14
INSERT INTO Label ( schema, name, title, description ) VALUES ( 1, 'dir', 'Directory', 'A directory to be created during the assembly process, with no associated code or archive.' );
 
15
INSERT INTO Label ( schema, name, title, description ) VALUES ( 1, 'ignore', 'Ignore', 'A file or directory which should not be treated as a branch.' );
 
16
 
 
17
 
 
18
/*
 
19
  2. Packaging Types
 
20
*/
 
21
INSERT INTO Schema ( name, title, description, owner ) VALUES ( 'packaging', 'Product Packaging', 'The relationship between Product and Sourcepackage', 1 );
 
22
INSERT INTO Label ( schema, name, title, description ) VALUES ( 2, 'packaged', 'Packaged', 'This product is directly packaged in that Sourcepackage.' );
 
23
INSERT INTO Label ( schema, name, title, description ) VALUES ( 2, 'included', 'Included', 'This product is included in that Sourcepackage.' );
 
24
 
 
25
 
 
26
/*
 
27
  3. Arch Branch Relationship
 
28
*/
 
29
INSERT INTO Schema ( name, title, description, owner ) VALUES ( 'archbranchrel', 'Arch Branch Relationship', 'The Relationship in Arch terms between two Branches', 6 );
 
30
INSERT INTO Label ( schema, name, title, description ) VALUES ( 3, 'continuation', 'Branch Continuation', 'The source branch was tagged off the destination branch.' );
 
31
 
 
32
 
 
33
/*
 
34
  4. Sourcerer Branch Relationship
 
35
*/
 
36
INSERT INTO Schema ( name, title, description, owner ) VALUES ( 'sourcererbranchrel', 'Sourcerer Branch Relationship', 'The relationship between two branches in Sourcerer terms.', 5 );
 
37
INSERT INTO Label ( schema, name, title, description ) VALUES ( 4, 'tracks', 'Tracking Branch', 'The source branch tracks the changes made to the destination branch.' );
 
38
 
 
39