aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/006_GridStore.sql
diff options
context:
space:
mode:
authorMelanie2010-01-10 02:13:55 +0000
committerMelanie2010-01-10 02:13:55 +0000
commite189b3056fff7223f6474bc26af559ef32891fa6 (patch)
tree3ee93139513fbf26525c8bd9aa3c8cde56f094d4 /OpenSim/Data/MySQL/Resources/006_GridStore.sql
parentMake the new API return only the regions that are marked online (diff)
downloadopensim-SC_OLD-e189b3056fff7223f6474bc26af559ef32891fa6.zip
opensim-SC_OLD-e189b3056fff7223f6474bc26af559ef32891fa6.tar.gz
opensim-SC_OLD-e189b3056fff7223f6474bc26af559ef32891fa6.tar.bz2
opensim-SC_OLD-e189b3056fff7223f6474bc26af559ef32891fa6.tar.xz
Add last_seen field to regions table
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/006_GridStore.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/006_GridStore.sql b/OpenSim/Data/MySQL/Resources/006_GridStore.sql
new file mode 100644
index 0000000..91322d6
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/006_GridStore.sql
@@ -0,0 +1,5 @@
1BEGIN;
2
3ALTER TABLE `regions` ADD COLUMN `last_seen` integer NOT NULL DEFAULT 0;
4
5COMMIT;