Chase latest change to asset description length with an update to XAssetStore db tables

Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
This commit is contained in:
Cinder
2015-03-04 10:02:23 -07:00
committed by BlueWall
parent 11a24d04b6
commit 56ae3da291
2 changed files with 18 additions and 2 deletions

View File

@@ -72,4 +72,12 @@ ALTER TABLE xassetsmeta ALTER COLUMN id SET DATA TYPE uuid USING id::uuid;
ALTER TABLE xassetsmeta ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea;
ALTER TABLE xassetsdata ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea;
COMMIT;
COMMIT;
:VERSION 5
BEGIN;
ALTER TABLE xassetsmeta MODIFY Description varchar(128);
COMMIT;