Mantis #7629: Change LandFlags column to unsigned. Thanks, Jim!

This commit is contained in:
Melanie Thielker
2015-07-14 21:16:25 +02:00
parent a7543a3391
commit 7b571a928c
2 changed files with 16 additions and 0 deletions

View File

@@ -940,3 +940,11 @@ ALTER TABLE prims ADD COLUMN AttachedPosZ double default 0;
ALTER TABLE primshapes ADD COLUMN LastAttachPoint int(4) not null default '0';
COMMIT;
:VERSION 50 #---- Change LandFlags to unsigned
BEGIN;
ALTER TABLE land CHANGE COLUMN LandFlags LandFlags unsigned default null;
COMMIT;