mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
add create_time and access_time to asset db for mysql, as well
as the code to update these at the appropriate time. This isn't surfaced in AssetBase yet. Change the replace into to an insert into for asset create. Assets are not supposed to be updatable, and the replace into is more expensive. From: Sean Dague <sdague@gmail.com>
This commit is contained in:
6
OpenSim/Data/MySQL/Resources/005_AssetStore.sql
Normal file
6
OpenSim/Data/MySQL/Resources/005_AssetStore.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE assets add create_time integer default 0;
|
||||
ALTER TABLE assets add access_time integer default 0;
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user