27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include "rebuild.h"
#include <assert.h>
/*
** COMMAND: rebuild
**
** Reconstruct the entire repository database from the core
** records. Run this command after updating the fossil
** executable in a way that changes the database schema.
*/
void rebuild_database(void){
Stmt s;
int errCnt;
int forceFlag;
|
>
>
|
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include "rebuild.h"
#include <assert.h>
/*
** COMMAND: rebuild
**
** Usage: %fossil rebuild REPOSITORY
**
** Reconstruct the named repository database from the core
** records. Run this command after updating the fossil
** executable in a way that changes the database schema.
*/
void rebuild_database(void){
Stmt s;
int errCnt;
int forceFlag;
|