mirror of
https://github.com/ManfredAabye/opensim-tsassets.git
synced 2026-07-31 04:08:20 +00:00
19 lines
496 B
Plaintext
19 lines
496 B
Plaintext
# -----------------
|
|
:VERSION 1
|
|
|
|
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS `tsassets_index` (
|
|
`id` char(36) NOT NULL,
|
|
`assetType` tinyint(4) NOT NULL,
|
|
`updated_at` int(11) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`),
|
|
INDEX `idx_tsassets_index_assetType` (`assetType`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- Type tables are created dynamically at runtime
|
|
-- using the same schema and name pattern: assets_<assetType>
|
|
-- e.g. assets_1, assets_22, assets_-1, assets_-2.
|
|
|
|
COMMIT;
|