mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 15:25:47 +08:00
9 lines
173 B
PL/PgSQL
9 lines
173 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE `Terrain` (
|
|
`RegionID` char(36) not null,
|
|
`Map` longblob,
|
|
PRIMARY KEY (`RegionID`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
COMMIT; |