mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
930b6fec25
Summary: DRAFT - throw together Phurl skeleton. Test Plan: The idea is that `some/long/url` will become `install/Udet4d` and can be viewed and edited at `install/Udet4d/view` and `install/Udet4d/edit`, respectively? Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: joshuaspence, chad, epriestley, Korvin Maniphest Tasks: T6049 Differential Revision: https://secure.phabricator.com/D13681
6 lines
268 B
SQL
6 lines
268 B
SQL
ALTER TABLE {$NAMESPACE}_phurl.phurl_url
|
|
ADD authorPHID VARBINARY(64) NOT NULL;
|
|
|
|
ALTER TABLE {$NAMESPACE}_phurl.phurl_url
|
|
CHANGE description description LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT},
|
|
CHANGE longURL longURL LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT};
|