~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/comments.sql

  • Committer: Ian Booth
  • Date: 2011-09-12 07:03:03 UTC
  • mto: (7675.1045.792 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13970.
  • Revision ID: ian.booth@canonical.com-20110912070303-yc11nkm0o3m8gbid
Add transitively_private column to branch table

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
COMMENT ON COLUMN Branch.size_on_disk IS 'The size in bytes of this branch in the mirrored area.';
65
65
COMMENT ON COLUMN Branch.merge_queue IS 'A reference to the BranchMergeQueue record that manages merges.';
66
66
COMMENT ON COLUMN Branch.merge_queue_config IS 'A JSON string of configuration values that can be read by a merge queue script.';
67
 
 
 
67
COMMENT ON COLUMN Branch.transitively_private IS 'A branch is transitively private if it is explicitly private or is stacked on a transitively private branch.';
68
68
 
69
69
-- BranchMergeQueue
70
70
COMMENT ON TABLE BranchMergeQueue IS 'Queue for managing the merge workflow for branches.';