OpenSimMirror/OpenSim/Data/SQLiteLegacy/Resources/009_RegionStore.sql

9 lines
273 B
PL/PgSQL

BEGIN;
ALTER TABLE prims ADD COLUMN ColorR integer not null default 0;
ALTER TABLE prims ADD COLUMN ColorG integer not null default 0;
ALTER TABLE prims ADD COLUMN ColorB integer not null default 0;
ALTER TABLE prims ADD COLUMN ColorA integer not null default 0;
COMMIT;