mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
9 lines
312 B
MySQL
9 lines
312 B
MySQL
|
ALTER TABLE {$NAMESPACE}_releeph.releeph_request
|
||
|
DROP COLUMN requestCommitIdentifier,
|
||
|
DROP COLUMN requestCommitOrdinal,
|
||
|
DROP COLUMN status,
|
||
|
DROP COLUMN committedByUserPHID,
|
||
|
DROP KEY `requestIdentifierBranch`,
|
||
|
ADD CONSTRAINT
|
||
|
UNIQUE KEY `requestIdentifierBranch` (`requestCommitPHID`, `branchID`);
|