mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Minor, reduce slug column size to 128, see D1391.
This commit is contained in:
parent
13bf353f14
commit
95cde81daf
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ CREATE TABLE phabricator_phriction.phriction_document (
|
|||
id INT UNSIGNED NOT NULL,
|
||||
phid VARCHAR(64) BINARY NOT NULL,
|
||||
UNIQUE KEY (phid),
|
||||
slug VARCHAR(256) NOT NULL,
|
||||
slug VARCHAR(128) NOT NULL,
|
||||
UNIQUE KEY (slug),
|
||||
depth INT UNSIGNED NOT NULL,
|
||||
UNIQUE KEY (depth, slug),
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
ALTER TABLE phabricator_phriction.phriction_document
|
||||
CHANGE slug slug VARCHAR(256) NOT NULL;
|
||||
CHANGE slug slug VARCHAR(128) NOT NULL;
|
||||
|
|
Loading…
Reference in a new issue