38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
** The content tables have a content version number which rarely
** changes. The aux tables have an arbitrary version number (typically
** a date) which can change frequently. When the content schema changes,
** we have to execute special procedures to update the schema. When
** the aux schema changes, all we need to do is rebuild the database.
*/
#define CONTENT_SCHEMA "1"
#define AUX_SCHEMA "2011-01-28"
#endif /* INTERFACE */
/*
** The schema for a repository database.
**
|
|
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
** The content tables have a content version number which rarely
** changes. The aux tables have an arbitrary version number (typically
** a date) which can change frequently. When the content schema changes,
** we have to execute special procedures to update the schema. When
** the aux schema changes, all we need to do is rebuild the database.
*/
#define CONTENT_SCHEMA "1"
#define AUX_SCHEMA "2011-02-25"
#endif /* INTERFACE */
/*
** The schema for a repository database.
**
|
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
# define TAG_USER 3 /* User who made a checking */
# define TAG_DATE 4 /* The date of a check-in */
# define TAG_HIDDEN 5 /* Do not display or sync */
# define TAG_PRIVATE 6 /* Display but do not sync */
# define TAG_CLUSTER 7 /* A cluster */
# define TAG_BRANCH 8 /* Value is name of the current branch */
# define TAG_CLOSED 9 /* Do not display this check-in as a leaf */
#endif
#if EXPORT_INTERFACE
# define MAX_INT_TAG 9 /* The largest pre-assigned tag id */
#endif
/*
** The schema for the locate FOSSIL database file found at the root
** of very check-out. This database contains the complete state of
** the checkout.
*/
|
>
|
|
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
|
# define TAG_USER 3 /* User who made a checking */
# define TAG_DATE 4 /* The date of a check-in */
# define TAG_HIDDEN 5 /* Do not display or sync */
# define TAG_PRIVATE 6 /* Display but do not sync */
# define TAG_CLUSTER 7 /* A cluster */
# define TAG_BRANCH 8 /* Value is name of the current branch */
# define TAG_CLOSED 9 /* Do not display this check-in as a leaf */
# define TAG_PARENT 10 /* Change to parentage on a checkin */
#endif
#if EXPORT_INTERFACE
# define MAX_INT_TAG 16 /* The largest pre-assigned tag id */
#endif
/*
** The schema for the locate FOSSIL database file found at the root
** of very check-out. This database contains the complete state of
** the checkout.
*/
|