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