Skip to content
fabrica
hanna
/
fabrica
Code
Issues
Pull requests
Commits
Branches
Tags
main
Switch branch
main
View all branches
Clone
HTTPS
SSH
fabrica
/
migrations
/
postgres
/
0007_repo_object_format.sql
197 bytes
Raw
Copy path
1
-- The object hash algorithm each repository was created with. Existing repos are
2
-- SHA-1; new repos may opt into SHA-256.
3
ALTER
TABLE
repos
ADD
COLUMN
object_format
TEXT
NOT
NULL
DEFAULT
'sha1'
;