~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/branch.py

  • Committer: Stuart Bishop
  • Date: 2011-09-28 12:49:24 UTC
  • mfrom: (9893.10.1 trivial)
  • mto: This revision was merged to the branch mainline in revision 14178.
  • Revision ID: stuart.bishop@canonical.com-20110928124924-m5a22fymqghw6c5i
Merged trivial into distinct-db-users.

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
    # of the state of any stacked on branches.
176
176
    explicitly_private = BoolCol(
177
177
        default=False, notNull=True, dbName='private')
 
178
    # A branch is transitively private if it is private or it is stacked on a
 
179
    # transitively private branch. The value of this attribute is maintained
 
180
    # by a database trigger.
 
181
    transitively_private = BoolCol(dbName='transitively_private')
178
182
 
179
183
    @property
180
184
    def private(self):