1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00
phorge-phorge/resources/sql/patches/20130226.commitkey.sql
epriestley fe78944c9d Prepare Diffusion for hovercards
Summary:
Move Diffusion to be hovercard-ready, and expand our ability to resolve commit references.

  - Link unqualified hashes of 7 characters or more which match a commit.
  - Link qualified hashes of 5 characters or more which match a commit.
  - Support `{...}` syntax.

Test Plan: {F33896}

Reviewers: chad, vrana

Reviewed By: vrana

CC: aran

Differential Revision: https://secure.phabricator.com/D5121
2013-02-27 08:04:54 -08:00

5 lines
209 B
SQL

ALTER TABLE {$NAMESPACE}_repository.repository_commit
DROP KEY `repositoryID`;
ALTER TABLE {$NAMESPACE}_repository.repository_commit
ADD UNIQUE KEY `key_commit_identity` (commitIdentifier, repositoryID);