Fix tests by adding DynAttrs add column commands to RegionStore.migrations (these were originally in 021_RegionStore.sql which I might have forgotton to add 2 years ago).

user_profiles
Justin Clark-Casey (justincc) 2013-01-25 04:22:32 +00:00
parent 6daf559fb6
commit 7789415148
1 changed files with 6 additions and 0 deletions

View File

@ -575,3 +575,9 @@ CREATE TABLE `regionenvironment` (
);
COMMIT;
:VERSION 27
BEGIN;
ALTER TABLE prims ADD COLUMN DynAttrs TEXT;
ALTER TABLE primshapes ADD COLUMN DynAttrs TEXT;
COMMIT;