~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/comments.sql

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-17 20:41:13 UTC
  • mfrom: (3277.1.4 launchpad-foobar2)
  • Revision ID: pqm@pqm.ubuntu.com-20060317204113-9841a4470db3611b
[r=jamesh] Mainline soyuz

Show diffs side-by-side

added added

removed removed

Lines of Context:
531
531
 
532
532
COMMENT ON COLUMN DistroReleaseQueue.pocket IS 'This is the pocket the upload is targeted at.';
533
533
 
 
534
COMMENT ON COLUMN DistroReleaseQueue.changesfile IS 'The changes file associated with this upload.';
 
535
 
534
536
-- DistroReleaseQueueSource
535
537
COMMENT ON TABLE DistroReleaseQueueSource IS 'An upload queue source package. This table stores information pertaining to the source files in an in-progress package upload.';
536
538
 
1281
1283
COMMENT ON TABLE PersonalSourcePackagePublication IS 'Contains the information about which sourcepackagerelease is included in a Personal Package Archive.';
1282
1284
COMMENT ON COLUMN PersonalSourcePackagePublication.personalpackagearchive IS 'Target Personal Package Archive.';
1283
1285
COMMENT ON COLUMN PersonalSourcePackagePublication.sourcepackagerelease IS 'Target Sourcepackagerelease.';
 
1286
 
 
1287
 
 
1288
-- Component
 
1289
COMMENT ON TABLE Component IS 'Known components in Launchpad';
 
1290
COMMENT ON COLUMN Component.name IS 'Component name text';
 
1291
 
 
1292
 
 
1293
-- Section
 
1294
COMMENT ON TABLE Section IS 'Known sections in Launchpad';
 
1295
COMMENT ON COLUMN Section.name IS 'Section name text';
 
1296
 
 
1297
 
 
1298
-- ComponentSelection
 
1299
COMMENT ON TABLE ComponentSelection IS 'Allowed components in a given distrorelease.';
 
1300
COMMENT ON COLUMN ComponentSelection.distrorelease IS 'Refers to the distrorelease in question.';
 
1301
COMMENT ON COLUMN ComponentSelection.component IS 'Refers to the component in qestion.';
 
1302
 
 
1303
 
 
1304
-- SectionSelection
 
1305
COMMENT ON TABLE SectionSelection IS 'Allowed sections in a given distrorelease.';
 
1306
COMMENT ON COLUMN SectionSelection.distrorelease IS 'Refers to the distrorelease in question.';
 
1307
COMMENT ON COLUMN SectionSelection.section IS 'Refers to the section in question.';