sapling/bonsai_hg_mapping/schemas/sqlite-bonsai-hg-mapping.sql
Kostia Balytskyi e561682ecd mononoke: rename crates to contain underscores instead of dashes
Summary: Let's not use dashes in crate names.

Reviewed By: StanislavGlebik

Differential Revision: D14341596

fbshipit-source-id: 85a7ded60cf2e326997ac70ee47a29116af97590
2019-03-06 07:18:28 -08:00

8 lines
188 B
SQL

CREATE TABLE bonsai_hg_mapping (
repo_id INTEGER NOT NULL,
hg_cs_id BINARY(20) NOT NULL,
bcs_id BINARY(32) NOT NULL,
UNIQUE (repo_id, hg_cs_id),
PRIMARY KEY (repo_id, bcs_id)
);