~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/comments.sql

Fix yui directory issues

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
COMMENT ON COLUMN BugTask.distribution IS 'The distro of the named sourcepackage.';
268
268
COMMENT ON COLUMN BugTask.status IS 'The general health of the bug, e.g. Accepted, Rejected, etc.';
269
269
COMMENT ON COLUMN BugTask.importance IS 'The importance of fixing the bug.';
 
270
COMMENT ON COLUMN BugTask.priority IS 'Obsolete.';
270
271
COMMENT ON COLUMN BugTask.binarypackagename IS 'The name of the binary package built from the source package. This column may only contain a value if this bug task is linked to a sourcepackage (not a product)';
271
272
COMMENT ON COLUMN BugTask.assignee IS 'The person who has been assigned to fix this bug in this product or (sourcepackagename, distro)';
272
273
COMMENT ON COLUMN BugTask.date_assigned IS 'The date on which the bug in this (sourcepackagename, distro) or product was assigned to someone to fix';
1624
1625
COMMENT ON COLUMN BinaryPackageRelease.user_defined_fields IS 'A JSON struct containing a sequence of key-value pairs with user defined fields in the control file.';
1625
1626
COMMENT ON COLUMN BinaryPackageRelease.homepage IS 'Upstream project homepage URL, not checked for validity.';
1626
1627
 
1627
 
 
1628
 
COMMENT ON TABLE BinaryPackageReleaseContents IS 'BinaryPackageReleaseContents: Mapping table that maps from BinaryPackageReleases to path names.';
1629
 
COMMENT ON COLUMN BinaryPackageReleaseContents.binarypackagerelease IS 'The BinaryPackageRelease that contains the path name.';
1630
 
COMMENT ON COLUMN BinaryPackageReleaseContents.binarypackagepath IS 'The path name, via the BinaryPackagePath table.';
1631
1628
 
1632
1629
-- BinaryPackageFile
1633
1630
 
1641
1637
 
1642
1638
COMMENT ON TABLE BinaryPackageName IS 'BinaryPackageName: A soyuz binary package name.';
1643
1639
 
1644
 
 
1645
 
COMMENT ON TABLE BinaryPackagePath IS 'BinaryPackagePath: A table of filenames shipped in binary packages.';
1646
 
COMMENT ON COLUMN BinaryPackagePath.path IS 'The full path of the file.';
1647
 
 
1648
1640
-- Distribution
1649
1641
 
1650
1642
COMMENT ON TABLE Distribution IS 'Distribution: A soyuz distribution. A distribution is a collection of DistroSeries. Distributions often group together policy and may be referred to by a name such as "Ubuntu" or "Debian"';