aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/perl/lib/OpenSim/AssetServer/Config.pm
blob: 55989210f25c720525951df591377db2a7c5258c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package OpenSim::AssetServer::Config;

use strict;

our %SYS_SQL = (
	select_asset_by_uuid =>
		"SELECT * FROM assets WHERE id=X?",
	insert_asset =>
		"INSERT INTO assets VALUES (?,?,?,?,?,?,?,?)"
);


our @ASSETS_COLUMNS = (
	"id",
	"name",
	"description",
	"assetType",
	"invType",
	"local",
	"temporary",
	"data",
);

1;