Fossil SCM
Add missing columns to the schema during rebuild.
Commit
f302d31fd40b35c2c8c63b838521f5d6b17c464f264843ab3e718b6ee8cc8989
Parent
2d4fd55fee5c4a1…
1 file changed
+5
+5
| --- src/rebuild.c | ||
| +++ src/rebuild.c | ||
| @@ -140,10 +140,15 @@ | ||
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /* Do the fossil-2.0 updates to the schema. (2017-02-28) |
| 143 | 143 | */ |
| 144 | 144 | rebuild_schema_update_2_0(); |
| 145 | + | |
| 146 | + /* Add the user.jx and reportfmt.jx columns if they are missing. (2022-11-18) | |
| 147 | + */ | |
| 148 | + user_update_user_table(); | |
| 149 | + report_update_reportfmt_table(); | |
| 145 | 150 | } |
| 146 | 151 | |
| 147 | 152 | /* |
| 148 | 153 | ** Update the repository schema for Fossil version 2.0. (2017-02-28) |
| 149 | 154 | ** (1) Change the CHECK constraint on BLOB.UUID so that the length |
| 150 | 155 |
| --- src/rebuild.c | |
| +++ src/rebuild.c | |
| @@ -140,10 +140,15 @@ | |
| 140 | } |
| 141 | |
| 142 | /* Do the fossil-2.0 updates to the schema. (2017-02-28) |
| 143 | */ |
| 144 | rebuild_schema_update_2_0(); |
| 145 | } |
| 146 | |
| 147 | /* |
| 148 | ** Update the repository schema for Fossil version 2.0. (2017-02-28) |
| 149 | ** (1) Change the CHECK constraint on BLOB.UUID so that the length |
| 150 |
| --- src/rebuild.c | |
| +++ src/rebuild.c | |
| @@ -140,10 +140,15 @@ | |
| 140 | } |
| 141 | |
| 142 | /* Do the fossil-2.0 updates to the schema. (2017-02-28) |
| 143 | */ |
| 144 | rebuild_schema_update_2_0(); |
| 145 | |
| 146 | /* Add the user.jx and reportfmt.jx columns if they are missing. (2022-11-18) |
| 147 | */ |
| 148 | user_update_user_table(); |
| 149 | report_update_reportfmt_table(); |
| 150 | } |
| 151 | |
| 152 | /* |
| 153 | ** Update the repository schema for Fossil version 2.0. (2017-02-28) |
| 154 | ** (1) Change the CHECK constraint on BLOB.UUID so that the length |
| 155 |