mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
9d125b459e
Summary: Fixes T10259. There was no real reason to do this `ip2long()` stuff in the first place -- it's very slightly smaller, but won't work with ipv6 and the savings are miniscule. Test Plan: - Ran migration. - Viewed logs in web UI. - Pulled and pushed. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10259 Differential Revision: https://secure.phabricator.com/D15165
5 lines
219 B
SQL
5 lines
219 B
SQL
ALTER TABLE {$NAMESPACE}_repository.repository_pullevent
|
|
CHANGE remoteAddress remoteAddress VARBINARY(64);
|
|
|
|
ALTER TABLE {$NAMESPACE}_repository.repository_pushevent
|
|
CHANGE remoteAddress remoteAddress VARBINARY(64);
|