~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/comments.sql

Merge db-devel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
COMMENT ON COLUMN BugJob.job_type IS 'The type of job (enumeration value). Allows us to query the database for a given subset of BugJobs.';
191
191
COMMENT ON COLUMN BugJob.json_data IS 'A JSON struct containing data for the job.';
192
192
 
 
193
-- BugMute
 
194
COMMENT ON TABLE BugMute IS 'Mutes for bug notifications.';
 
195
COMMENT ON COLUMN BugMute.person IS 'The person that muted all notifications from this bug.';
 
196
COMMENT ON COLUMN BugMute.bug IS 'The bug of this record';
 
197
COMMENT ON COLUMN BugMute.date_created IS 'The date at which this mute was created.';
 
198
 
193
199
-- BugNomination
194
200
COMMENT ON TABLE BugNomination IS 'A bug nominated for fixing in a distroseries or productseries';
195
201
COMMENT ON COLUMN BugNomination.bug IS 'The bug being nominated.';
569
575
-- DistroSeriesDifference
570
576
COMMENT ON TABLE DistroSeriesDifference IS 'A difference of versions for a package in a derived distroseries and its parent distroseries.';
571
577
COMMENT ON COLUMN DistroSeriesDifference.derived_series IS 'The derived distroseries with the difference from its parent.';
 
578
COMMENT ON COLUMN DistroSeriesDifference.parent_series IS 'The parent distroseries with the difference from its child.';
572
579
COMMENT ON COLUMN DistroSeriesDifference.source_package_name IS 'The name of the source package which is different in the two series.';
573
580
COMMENT ON COLUMN DistroSeriesDifference.package_diff IS 'The most recent package diff that was created for the base version to derived version.';
574
581
COMMENT ON COLUMN DistroSeriesDifference.parent_package_diff IS 'The most recent package diff that was created for the base version to the parent version.';
588
595
COMMENT ON COLUMN DistroSeriesParent.derived_series is 'The derived distroseries';
589
596
COMMENT ON COLUMN DistroSeriesParent.parent_series is 'The parent distroseries';
590
597
COMMENT ON COLUMN DistroSeriesParent.initialized is 'Whether or not the derived series was initialized by copying packages from the parent.';
 
598
COMMENT ON COLUMN DistroSeriesParent.is_overlay is 'Whether or not the derived series is an overlay over the parent series.';
 
599
COMMENT ON COLUMN DistroSeriesParent.ordering is 'The parent ordering. Parents are ordered in ascending order starting from 1.';
 
600
COMMENT ON COLUMN DistroSeriesParent.pocket is 'The pocket for this overlay.';
 
601
COMMENT ON COLUMN DistroSeriesParent.component is 'The component for this overlay.';
591
602
 
592
603
-- DistroSeriesPackageCache
593
604
 
1045
1056
COMMENT ON TABLE QuestionMessage IS 'A link between a question and a message. This means that the message will be displayed on the question page.';
1046
1057
COMMENT ON COLUMN QuestionMessage.action IS 'The action on the question that was done with this message. This is a value from the QuestionAction enum.';
1047
1058
COMMENT ON COLUMN QuestionMessage.new_status IS 'The status of the question after this message.';
 
1059
COMMENT ON COLUMN QuestionMessage.owner IS 'Denormalised owner from Message, used for efficient queries on commentors.';
1048
1060
 
1049
1061
-- QuestionReopening
1050
1062
 
1129
1141
COMMENT ON COLUMN DistroSeries.language_pack_full_export_requested IS 'Whether next language pack export should be a full export or an update.';
1130
1142
 
1131
1143
 
 
1144
-- PackageCopyJob
 
1145
 
 
1146
COMMENT ON TABLE PackageCopyJob IS 'Contains references to jobs for copying packages between archives.';
 
1147
COMMENT ON COLUMN PackageCopyJob.source_archive IS 'The archive from which packages are copied.';
 
1148
COMMENT ON COLUMN PackageCopyJob.target_archive IS 'The archive to which packages are copied.';
 
1149
COMMENT ON COLUMN PackageCopyJob.target_distroseries IS 'The distroseries to which packages are copied.';
 
1150
COMMENT ON COLUMN PackageCopyJob.job_type IS 'The type of job';
 
1151
COMMENT ON COLUMN PackageCopyJob.json_data IS 'A JSON struct containing data for the job.';
 
1152
 
 
1153
 
1132
1154
-- PackageDiff
1133
1155
 
1134
1156
COMMENT ON TABLE PackageDiff IS 'This table stores diffs bettwen two scpecific SourcePackageRelease versions.';