diff options
author | Sean Dague | 2008-06-25 18:57:21 +0000 |
---|---|---|
committer | Sean Dague | 2008-06-25 18:57:21 +0000 |
commit | ce9c58434104f8dcb87eea20b5eb70333b4934fe (patch) | |
tree | e541ff5898ad0e153bb7a4793e78cfb911d444ad /OpenSim/Data/SQLite | |
parent | lazy=true for these mappings, as we don't do full lists very often (diff) | |
download | opensim-SC_OLD-ce9c58434104f8dcb87eea20b5eb70333b4934fe.zip opensim-SC_OLD-ce9c58434104f8dcb87eea20b5eb70333b4934fe.tar.gz opensim-SC_OLD-ce9c58434104f8dcb87eea20b5eb70333b4934fe.tar.bz2 opensim-SC_OLD-ce9c58434104f8dcb87eea20b5eb70333b4934fe.tar.xz |
add migrations to mysql and sqlite for flags on embedded inventory
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/003_RegionStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/003_RegionStore.sql b/OpenSim/Data/SQLite/Resources/003_RegionStore.sql new file mode 100644 index 0000000..4db2f75 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/003_RegionStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | ALTER TABLE primitems add flags integer not null default 0; | ||
4 | |||
5 | COMMIT; \ No newline at end of file | ||