Diff
Not logged in

Differences From:

File src/schema.c part of check-in [08db9e11cb] - Track the origin of tags and display that origin in the tag and properities information field of the "vinfo" page. Must "fossil rebuild" after this change. by drh on 2009-01-21 23:40:17. [view]

To:

File src/schema.c part of check-in [42c2a18e73] - Change the way branches are tagged: The value of the "branch" property is used to identify the branch name. Repository rebuild required. Also, branches must be retagged. by drh on 2009-01-22 12:03:51. [view]

@@ -280,9 +280,9 @@
 @ INSERT INTO tag VALUES(3, 'user');            -- TAG_USER
 @ INSERT INTO tag VALUES(4, 'hidden');          -- TAG_HIDDEN
 @ INSERT INTO tag VALUES(5, 'private');         -- TAG_PRIVATE
 @ INSERT INTO tag VALUES(6, 'cluster');         -- TAG_CLUSTER
-@ INSERT INTO tag VALUES(7, 'newbranch');       -- TAG_NEWBRANCH
+@ INSERT INTO tag VALUES(7, 'branch');          -- TAG_BRANCH
 @ INSERT INTO tag VALUES(8, 'closed');          -- TAG_CLOSED
 @
 @ -- Assignments of tags to baselines.  Note that we allow tags to
 @ -- have values assigned to them.  So we are not really dealing with
@@ -334,9 +334,9 @@
 # define TAG_USER       3     /* User who made a checking */
 # define TAG_HIDDEN     4     /* Do not display or sync */
 # define TAG_PRIVATE    5     /* Display but do not sync */
 # define TAG_CLUSTER    6     /* A cluster */
-# define TAG_NEWBRANCH  7     /* First check-in of a new named branch */
+# define TAG_BRANCH     7     /* Value is name of the current branch */
 # define TAG_CLOSED     8     /* Do not display this check-in as a leaf */
 #endif
 #if EXPORT_INTERFACE
 # define MAX_INT_TAG    8     /* The largest pre-assigned tag id */