mirror of
https://github.com/opensim/opensim.git
synced 2026-05-26 20:15:35 +08:00
* Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
6 lines
55 B
PL/PgSQL
6 lines
55 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE assets drop InvType;
|
|
|
|
COMMIT;
|